/* Adjust layout for CEO page with extra top bars */
.ceo-page body {
    padding-top: 0;
    /* Managed by spacer or normal flow */
}

.hero-spacer {
    height: calc(var(--header-height) + var(--top-bar-height));
    /* Push content below fixed header */
    width: 100%;
    background: var(--bg-dark);
}

/* CEO Section */
.ceo-page-container {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ceo-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ceo-image img {
    width: 100%;
    height: 600px;
    /* Taller fixed height */
    object-fit: cover;
    /* Ensure image covers area without distortion */
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
}

.ceo-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ceo-message {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
}

.ceo-signature .name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.ceo-signature .title {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .ceo-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-form {
        width: 100%;
    }

    .subscribe-input {
        flex: 1;
        min-width: 0;
    }
}