@import url('/components/assets/css/default.css');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    background-color: #F6F6F6;
}

.container-custom {
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    padding: 10px 0;
    background-image: url('/components/assets/img/corporate/EEpage_Bannerimages.png');
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header1 {
    text-align: center;
    color: white;
    padding: 10px 0;
    background-image: url('/components/assets/img/corporate/EEpage_Bannerimages.png');
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    display: flex;
    align-items: center;
    align-content: center;
    /* flex-wrap: nowrap; */
    background: #fff;
    gap: 60px;
    padding: 60px;
    padding-left: 0px;
    padding-top: 0px;
}

.left-section {
    flex: 1.5;
    background-color: #00695c;
    color: white;
    width: 650px;
    text-align: center;
    background-image: url('components/assets/img/corporate/handsup.jpg');
    background-size: cover;
    background-repeat: space;
    height: 900px;
    display: flex;
    align-items: center;
}

.left-section h2 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 61px;
}

.left-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.right-section {
    flex: 2;
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 60px;
    width: 30vw;
}

.benefit {
    display: flex;
    margin-bottom: 20px;
}

.icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: #00AB86;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-right: 20px;
}

.text {
    flex: 1;
}

.text h3 {
    margin-top: 0;
}

.text p {
    margin: 5px 0 0;
}

.container1 {
    text-align: center;
    padding: 50px;
}

@media (max-width: 768px) {

    .content {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
        padding: 20px;
    }

    .right-section {
        display: block;
        width: 100%;
    }

    .left-section {
        width: 95vw;
        height: auto;

    }

    .left-section h2 {
        font-size: 32px;
        line-height: 48px;
    }

    header {
        padding: 20px;
    }
}

.greenoverlay1 {
    width: 100%;
    background: #0C4521CC;
    height: 100%;
    display: flex;
    align-items: center;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.partner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partner img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.engagement-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #2e7d32;
    background-image: url('components/assets/img/corporate/section2.jpg');
    background-size: cover;
    color: #fff;
}

.greenoverlay {
    width: 100%;
    background: #0C4521CC;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px;

}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta-button {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #fdd835;
}

@media (max-width: 768px) {
    .engagement-section {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        min-width: 90%;
    }

    .image-content {
        width: min-content;
    }

    .cta-button {
        margin-top: 20px;
    }

    .partners {
        flex-direction: column;
    }

    .container1 h1 {
        font-size: 32px;
        line-height: 48px;
    }

    .greenoverlay {
        flex-direction: column;
        text-align: center;
        padding: 0px;
    }
}