/* CEO Message Styles */

.ceo-message-container {
    display: flex;
    gap: 40px;
    /* background: #ffffff;*/
    /* padding: 40px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /* margin-top: 20px; */
    /* border: 1px solid rgba(0, 0, 0, 0.03);  */
}

.ceo-image-wrapper {
    flex: 0 0 300px;
    position: relative;
}

.ceo-image-wrapper::before {
    content: '';
    position: absolute;
    top: 23px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: rgb(248 249 250);
    /* border-radius: 8px; */
    z-index: 0;
}

.ceo-profile-image {
    width: 100%;
    height: auto;
    /* border-radius: 8px; */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.ceo-text-content {
    flex: 1;
}

.ceo-greeting {
    font-size: 24px;
    font-weight: 700;
    color: #2e3790;
    margin-bottom: 25px;
}

.ceo-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ceo-signature-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.ceo-sign-off {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.ceo-name {
    font-size: 20px;
    font-weight: 700;
    color: #2e3790;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 14px;
    font-weight: 600;
    color: #0088cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .ceo-message-container {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .ceo-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
}
