/* css/about.css */

/* ADDED: Page Title Section */
.page-title-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    background-color: #fffaf2; /* Light background for hero */
}

.page-title-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-title-section p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Reusable Content Grid Section */
.content-grid-section {
    padding: 4rem 1rem;
}

.content-grid {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 3rem;
}

.text-content {
    text-align: center; 
    width: 100%;
}

h2 {
    font-size: 2.5rem; 
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-align: center;
}

.text-content p.description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 42rem; 
    margin-left: auto;
    margin-right: auto;
}

/* NEW: Founder Quote Style */
.founder-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fffaf2;
    border-left: 5px solid #e88e07;
    border-radius: 0 8px 8px 0;
}

.founder-quote blockquote {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #374151;
}

.founder-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: #ad5207;
}


.image-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-container img {
    width: 100%;
    max-width: 36rem;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 5rem;
}

/* NEW: Why We're Different Section */
.why-different-section {
    background-color: #fff;
    padding: 4rem 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: #ad5207;
    margin-bottom: 1rem;
    display: inline-block;
    background-color: #fff0e1;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}


/* Meet Our Tutors Section */
.tutors-section {
    padding: 4rem 1rem;
    background-color: #fffaf2;
}

.tutors-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tutor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tutor-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.tutor-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top; 
}

.tutor-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.tutor-card h3 {
    font-size: 1.25rem; 
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}
.tutor-card .tutor-role {
    font-size: 0.875rem;
    color: #e88e07; 
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.tutor-card .tutor-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

/* Responsive grid for tutors */
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .content-grid {
        flex-direction: row; 
        gap: 4rem;
    }
    
    .text-content,
    .image-container {
        width: 50%; 
    }

    .text-content {
        text-align: left; 
    }
}

/* ADD THIS TO YOUR about.css FILE */

.list-style-disc-orange {
    list-style: none;
    padding-left: 0;
    text-align: left;
}
.list-style-disc-orange li {
    padding-left: 1.5rem;
    position: relative;
}
.list-style-disc-orange li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #e88e07; /* Brand color for the checkmark */
    font-weight: bold;
}
.list-style-disc-orange li + li {
    margin-top: 1rem;
}
/* --- Call to Action Section --- */
.cta-section {
    background-color: #ad5207;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white; 
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-text .btn-primary {
    background-color: white;
    color: #ad5207;
    padding: 0.75rem 2.5rem;
}

.cta-text .btn-primary:hover {
    background-color: #f3f4f6;
}