
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    
}


header {
    background: #4f6f45; 
    padding: 40px 0;
    text-align: center;
}

header h1 {
    color: white;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 0;
}


.exercise-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 30px 40px;
    padding: 40px;
}


.exercise-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.caption {
    font-size: 0.9rem;
    color: #444;
    margin-top: 5px;
}


.exercise-text h2 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 10px;
}


.exercise-text h2 a {
    color: inherit;           
    text-decoration: none;   
    display: inline-block;    
}


.exercise-text h2 a:hover {
    text-decoration: underline; 
    color: #2e4d2e;          
}


.exercise-text p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 5px 0;
}