/* ====================== CEO SECTION ====================== */
.ceo-container {
    background-color: #cad1bf79;
    padding: 4rem 0;
    width: 100%;
}

.ceo-section {
    max-width: 1200px;
    margin: 0 auto;
    background: #F8F7F3;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.ceo-heading {
    text-align: left;
    margin-bottom: 3rem;
}

.ceo-heading h2 {
    font-size: 2.4rem;
    letter-spacing: -0.02em;
    color: #1A1C1E;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.ceo-heading .heading-underline {
    width: 100px;
    height: 3px;
    background-color: #1E3A2F;
    margin: 0;
}

/* Content Layout */
.ceo-content {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ceo-image-wrapper {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.ceo-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.ceo-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(0.75) contrast(1.08);
    border: 1px solid #EFEDE7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ceo-message-wrapper {
    flex: 2;
    min-width: 300px;
}

.ceo-greeting {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1E3A2F;
    margin-bottom: 1.2rem;
}

.ceo-message p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #3F4247;
    margin-bottom: 1.4rem;
}

.ceo-message p:last-child {
    margin-bottom: 0;
}

.ceo-name {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid #EFEDE7;
}

.ceo-name h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1C1E;
    margin-bottom: 0.3rem;
}

.ceo-name p {
    font-size: 0.9rem;
    color: #5E5F62;
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 992px) {
    .ceo-section {
        padding: 3rem 2rem;
    }
    
    .ceo-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ceo-container {
        padding: 3rem 0;
    }
    
    .ceo-section {
        padding: 2.5rem 1.8rem;
        border-radius: 6px;
    }
    
    .ceo-heading h2 {
        font-size: 2.1rem;
    }
    
    .ceo-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .ceo-image-wrapper {
        max-width: 320px;
    }
    
    .ceo-message-wrapper {
        text-align: center;
    }
    
    .ceo-greeting {
        text-align: center;
    }
    
    .ceo-message p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .ceo-section {
        padding: 2rem 1.2rem;
    }
    
    .ceo-heading h2 {
        font-size: 1.85rem;
    }
    
    .ceo-image-wrapper {
        min-width: auto;
        max-width: 280px;
    }
    
    .ceo-message p {
        font-size: 0.97rem;
    }
    
    .ceo-name h3 {
        font-size: 1.15rem;
    }
}