@charset "UTF-8";

/* ===================================
   CEO Section
=================================== */
.ceo {
    padding: 100px 20px;
    background: #fff;
}

.ceo__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.ceo__content {
    order: 1;
}

.ceo__image {
    order: 2;
    text-align: center;
}

.ceo__image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

.ceo__greeting {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.4;
}

.ceo__message {
    margin-bottom: 40px;
}

.ceo__message p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ceo__message p:last-child {
    margin-bottom: 0;
}

.ceo__signature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.ceo__company {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.ceo__sign {
    height: 35px;
    width: auto;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 1024px) {
    .ceo__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ceo__content {
        order: 2;
    }
    
    .ceo__image {
        order: 1;
    }
    
    .ceo__image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .ceo {
        padding: 60px 20px;
    }
    
    .ceo__greeting {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .ceo__message p {
        font-size: 15px;
    }
    
    .ceo__image img {
        max-height: 350px;
    }
}