* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #f4f6fb;
    color: #1e293b;
    line-height: 1.7;
    font-size: 17px;
}

/* CONTAINER */

.container {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    color: white;

    background: linear-gradient(to right, #28215E, #246FC6);
}

/* GRADIENT FADE */
.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 180px;

    background: linear-gradient(
            to bottom,
            rgba(47, 60, 143, 0) 0%,
            rgba(47, 60, 143, 0.4) 60%,
            rgba(47, 60, 143, 1) 100%
    );

    pointer-events: none;
    z-index: 1;
}


/* CONTENT */
.hero-inner {
    position: relative;
    z-index: 3;
    padding: 50px 24px 120px;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* SWOOSH*/
.hero-swoosh {
    position: relative;
    width: 100%;
    height: 350px;

    background: url('../img/curve_yellow.svg') no-repeat center bottom;
    background-size: cover;

    margin-top: -300px;

    z-index: 1;
}
.hero::before {
    height: 140px;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .logo {
        height: 70px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 16px;
    }
}

/* LOGO */
.logo {
    height: 90px;
    z-index: 5;
}

/* TITELS */
.hero h1 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

.hero h2 {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0.9;
    font-weight: 400;
}

/* INTRO */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr; /* mobiel */
    gap: 60px;
}

@media(min-width:1000px){
    .intro-grid {
        grid-template-columns: 0.9fr 1.6fr;
    }
}

.intro-text p {
    margin-bottom: 18px;
}

.intro-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.intro-text li {
    margin-bottom: 6px;
}
.intro-text {
    max-width: 520px;
}


/* COUNTRY BOX */
.country-box {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.country-box {
    width: 100%;
    max-width: none;
}

.country-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}


/* COUNTRY GRID */
.country-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr; /* mobiel */
}

@media(min-width:600px){
    .country-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:1000px){
    .country-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* COUNTRY CARD */
.country-card {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #28215E;
    padding: 14px 16px;
    border-radius: 12px;

    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;

    border: 1px solid #e2e8f0;

    transition: all 0.2s ease;
}

.country-card:hover {
    background: #246FC6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.country-card img {
    width: 24px;
}


/* MAP */
.map img {
    width: 75%;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.map h2 {
    text-align: center;
}


.intro-problem {
    display: grid;
    gap: 60px;
    align-items: center;
}

.intro-problem .img-wrap {
    display: flex;
    justify-content: flex-end;
}

.intro-problem img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
    display: block;
}

@media(min-width:1000px){
    .intro-problem {
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* TITLES */
h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #28215E;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #28215E;
}


/* TWO COL */
.two-col {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

@media(min-width:1000px){
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.two-col img {
    width: 100%;
    border-radius: 14px;
    margin: 12px 0;
}


/* SPLIT */
.split {
    display: grid;
    gap: 50px;
    margin-top: 70px;
}

@media(min-width:1000px){
    .split {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .split.reverse {
        direction: rtl;
    }

    .split.reverse div {
        direction: ltr;
    }
}

.split img {
    width: 100%;
    border-radius: 16px;
}


/* ALT TEXT */
.alt {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
}