/* --- PAGE HERO (Top Section) --- */
.page-hero {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-hero p {
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* --- SECTIONS & LAYOUT --- */
.content-section {
    padding: 80px 0;
    background-color: var(--bg-soft);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CEO CARD (About Us) --- */
.ceo-card {
    display: flex;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.ceo-image {
    width: 40%;
    position: relative;
    background-color: #ffffff; /* White background to blend */
    min-height: 400px; /* Ensures it has size even if image loads slow */
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center top; 
    display: block;
}

.ceo-content {
    width: 60%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-role {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ceo-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.ceo-bio {
    color: var(--dark-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ceo-bio p {
    margin-bottom: 15px;
}

/* --- SOCIAL LINKS --- */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

/* --- FAQ ACCORDION --- */
.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    background-color: var(--white);
    color: var(--gray-text);
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Allow enough space for expansion */
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .ceo-card {
        flex-direction: column;
        height: auto;
    }
    .ceo-image {
        width: 100%;
        height: auto; /* Let image dictate height on mobile */
        min-height: 300px;
    }
    .ceo-content {
        width: 100%;
        padding: 40px 25px;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
}