.aboutus7-section {
    padding: 50px 0;
    background-color: #000000;
    color: #ffffff;
}

.aboutus7-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.aboutus7-left {
    flex: 1.2;
}

.aboutus7-section .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.25;
}

.aboutus7-section .title .text-secondary {
    color: #54b248;
}

.aboutus7-section .subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.aboutus7-section .desc {
    font-size: 18px;
    line-height: 1.7;
    color: #eeeeee;
    margin-bottom: 35px;
    font-weight: 500;
}

.ceo-info {
    margin-bottom: 35px;
}

.ceo-name {
    color: #54b248;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Button Styling matching screenshot */
.ceo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #54b248;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.ceo-cta-btn:hover {
    background-color: #54b248;
    color: #ffffff;
    transform: translateY(-3px);
}

.aboutus7-right {
    flex: 1;
    display: flex;
    /* Necessary to allow image to stretch height */
}

.ceo-main-img {
    width: 100%;
    height: 100%;
    /* Fill container height to match left content */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 450px;
    /* Ensures a good size even with less text */
}

/* Responsiveness */
@media (max-width: 1024px) {
    .aboutus7-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .ceo-cta-btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .aboutus7-section .title {
        font-size: 32px;
    }

    .aboutus7-section .desc {
        font-size: 16px;
    }

    .ceo-name {
        font-size: 20px;
    }
}