﻿body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.9;
}

/* HERO */
.hero {
    width: 100%;
    background: linear-gradient(to right, #fff 0%, #fff 40%, #eba123 450%);
    color: black;
    padding: 80px 10%;
    box-sizing: border-box;
}

    .hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 18px;
        max-width: 800px;
    }

/* CTA Buttons */
.cta-group {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
}

.primary-btn {
    background: #eba123;
    color: white;
}

    .primary-btn:hover {
        background: #eba124;
    }

.secondary-btn {
    background: #4d4d4d;
    color: #fff;
}

    .secondary-btn:hover {
        background: #e4e4e4;
    }

/* SECTIONS */
.section {
    padding: 60px 10%;
    box-sizing: border-box;
    background: white;
    margin-top: 20px;
    border-radius: 10px;
}

/* ---------- FLEXIBLE GRID LAYOUT ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 50px;
}

.text {
    flex: 1;
    min-width: 300px;
    line-height: 1.9;
}

.image-box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: auto; /* Keep images proportional */
        display: block;
        border-radius: 10px;
        object-fit: cover;
    }

/* Reverse alignment */
.reverse {
    direction: rtl;
    background: transparent url("../../images/banner-bg-1-1.png") right top no-repeat;
    background-size: cover;
    position: relative;
}

    .reverse > * {
        direction: ltr;
    }

/* Mobile responsiveness */
@media(max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reverse {
        direction: ltr;
    }
}
