/* CEO Section */
.ceo-section {
    background-color: var(--color-pink);
}

.ceo-profile {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ceo-photo {
    width: 200px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 5px solid var(--color-gold);
    flex-shrink: 0;
}

.ceo-bio {
    text-align: left;
}

.ceo-bio h3 {
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.ceo-bio p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Mobile Responsive CEO Section */
@media (max-width: 768px) {
    .ceo-profile {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ceo-photo {
        width: 150px;
        height: auto;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .ceo-bio {
        text-align: center;
    }
}