@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f7f7f7;
    color: #222;
}

/* TOP SECTION */
.top-section {
    text-align: center;
    padding: 60px 20px 40px;
    background: #ffffff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.top-section h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.5;
    color: #444;
}

.company-info p {
    margin: 6px 0;
    font-size: 15px;
}

/* 3 COLUMNS – DESKTOP */
.columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: auto;
}

.column {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    width: 28%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON STYLE */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s;
}

.btn:hover {
    background: #333;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    color: #777;
}

/* ----------------------------- */
/* RESPONSIVE BREAKPOINTS       */
/* ----------------------------- */

/* TABLET (tot 992px) — 2 kolommen */
@media (max-width: 992px) {
    .columns {
        flex-wrap: wrap;
    }

    .column {
        width: 45%;
        margin-bottom: 40px;
    }

    .top-section h1 {
        font-size: 34px;
    }
}

/* SMARTPHONE (tot 600px) — 1 kolom */
@media (max-width: 600px) {

    .columns {
        flex-direction: column;
        padding: 30px 15px;
        gap: 20px;
    }

    .column {
        width: 100%;
        padding: 30px 20px;
    }

    .top-section {
        padding: 40px 15px 25px;
    }

    .top-section h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .logo-img {
        max-width: 150px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}
