﻿/* --- COUNTRY COURSE SECTION --- */
.country-course-section {
    background-color: #f4e2d1;
    border: 2px solid #b08a60;
    border-radius: 12px;
    padding: 25px;
    font-family: 'Georgia', serif;
    color: #5a3e1a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.course-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.course-header p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 25px;
}

.course-location {
    background-color: #fff8f0;
    border-left: 6px solid #b08a60;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.course-location h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #8c5128;
}

.course-location p {
    margin: 6px 0;
    font-size: 1rem;
}

.course-contact {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
}

.course-contact a {
    color: #8c5128;
    text-decoration: underline;
}

/* --- MOBILE --- */
@media (max-width: 600px) {
    .country-course-section {
        padding: 15px;
    }

    .course-header h2 {
        font-size: 1.6rem;
    }

    .course-location h3 {
        font-size: 1.2rem;
    }
}



/* --- COUNTRY TEACHER BLOCK --- */
.country-teacher-block {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #fff8f0;
    border: 2px solid #b08a60;
    border-radius: 12px;
    padding: 25px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.country-teacher-block .teacher-photo img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    border: 4px solid #8b5e3c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.country-teacher-block .teacher-info h2 {
    font-family: "Georgia", serif;
    color: #5a3e1a;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.country-teacher-block .teacher-info p {
    font-family: "Verdana", sans-serif;
    color: #6f4e37;
    line-height: 1.6;
    font-size: 1rem;
}

/* --- MOBILE --- */
@media (max-width: 700px) {
    .country-teacher-block {
        flex-direction: column;
        text-align: center;
    }

    .country-teacher-block .teacher-photo img {
        width: 70%;
        max-width: 260px;
    }
}
