/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #BF3232;
    font-size: 2rem;
    font-weight: 700;
}

/* Values Section */
.values-section {
    margin-bottom: 3rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.content-text p {
    margin-bottom: 1rem;
}

/* Instructors Grid Section */
.instructors-section {
    margin-bottom: 3rem;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.instructor-card {
    background: #FFEEE1;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #BF3232;
}

.instructor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f0f0f0;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #BF3232;
    overflow: hidden;
}

.photo-placeholder {
    font-size: 3rem;
    color: #BF3232;
    opacity: 0.7;
}

.instructor-name {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.instructor-bio {
    line-height: 1.6;
    color: #000000;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    text-align: justify;
    flex-grow: 1;
}

.courses-list {
    margin-bottom: 1.5rem;
}

.courses-list p {
    margin-bottom: 0.8rem;
    color: #000000;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
}

.book-button {
    display: inline-block;
    background-color: #BF3232;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    max-width: 150px;
    margin: auto;
}

.book-button:hover {
    background-color: #A52A2A;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 1024px) {
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .instructor-card {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .instructor-photo {
        width: 100px;
        height: 100px;
    }

    .photo-placeholder {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .instructor-name {
        font-size: 1.3rem;
    }
}