/* SECTION */
.ceo-section {
    padding: 80px 40px;
    background: #0D5B7A;
}

/* LAYOUT */
.ceo-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;   /* TOP ALIGN */
    justify-content: flex-start;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
.ceo-image {
    align-self: flex-start;   /* FORCE IMAGE TO TOP */
}

/* IMAGE */
.ceo-image img {
    width: 390px;
    height: 400px;      /* Increased Height */
    object-fit: cover;  /* Keeps image properly fitted */
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CONTENT */
.ceo-content {
    flex: 1;
}

.ceo-content h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

.ceo-content h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.ceo-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ffffff;
}

/* BUTTON */
.ceo-btn {
    display: inline-block;
    background: #f37021;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

.ceo-btn:hover {
    background: #d85c15;
}