:root {
    --red: #d31217;
    --dark: #111827;
    --muted: #6b7280;
    --bg: #f5f6f8;
    --card: #ffffff;
    --line: #e5e7eb;
    --main-color: #ff0000;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    transition: all 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
}

.mobile-nav a {
    text-decoration: none;
}

.mobile-nav a.active {
    font-weight: 700;
}

.mobile-cta {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

@media (max-width: 991px) {
    .main-nav,
    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu.is-open {
        display: block;
    }

    .topbar-contact {
        display: none;
    }
}

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }
.mt-6 { margin-top: 60px !important; }
.mt-7 { margin-top: 70px !important; }
.mt-8 { margin-top: 80px !important; }
.mt-9 { margin-top: 90px !important; }
.mt-10 { margin-top: 100px !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }
.mb-6 { margin-bottom: 60px !important; }
.mb-7 { margin-bottom: 70px !important; }
.mb-8 { margin-bottom: 80px !important; }
.mb-9 { margin-bottom: 90px !important; }
.mb-10 { margin-bottom: 100px !important; }

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto
}

.topbar {
    background: #111;
    color: #fff;
    font-size: .92rem
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
    align-items: center
}

.topbar-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

/* ALERT BASIS */
.alert {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* SUCCESS */
  .alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
  }
  
  /* ERROR */
  .alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #7f1d1d;
  }
  
  /* INFO (optioneel) */
  .alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
  }
  
  /* ICON (optioneel) */
  .alert::before {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
  }
  
  .alert-success::before {
    content: \"✔\";
  }
  
  .alert-error::before {
    content: \"⚠\";
  }
  
  .alert-info::before {
    content: \"ℹ\";
  }
  
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0
}

.logo img {
    height: 34px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center
}

.main-nav a {
    padding: .55rem .2rem;
    border-bottom: 2px solid transparent;
    font-weight: 700;
    font-size: .95rem
}

.main-nav a.active,
.main-nav a:hover {
    border-color: var(--red);
    color: var(--red)
}

.button {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    font-weight: 700
}

.button:hover {
    opacity: .92
}

.button-outline {
    background: transparent;
    border: 2px solid #fff
}

.button-small {
    padding: .7rem 1rem
}

.hero {
    position: relative;
    background-image: var(--hero);
    background-size: cover;
    background-position: center;
    min-height: 520px;
    color: #fff;
    display: flex;
    align-items: center
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .3))
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 5rem 0
}

.eyebrow {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .88rem;
    color: #ffd7d8
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: .3rem 0 1rem
}

.lead {
    font-size: 1.1rem;
    max-width: 60ch
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.4rem
}

.section {
    padding: 4.5rem 0
}

.section.alt {
    background: var(--bg)
}

.grid {
    display: grid;
    gap: 1.5rem
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06)
}

.card-content {
    padding: 1.4rem
}

.card h3 {
    margin: .1rem 0 .6rem
}
.card2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card img,
.post-card img {
    height: 230px;
    width: 100%;
    object-fit: cover
}

.intro {
    font-size: 1.15rem;
    color: #374151;
    max-width: 75ch
}

.page-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #fff, #f8fafc)
}

.page-hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center
}

.page-hero img {
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12)
}

.content-section {
    padding: 1rem 0 4rem
}

.content-section .text {
    /* max-width: 850px */
}

.content-section ul {
    padding-left: 1.25rem
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.stat {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: center
}

.cta {
    background: var(--dark);
    color: #fff;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center
}

.site-footer {
    background: #101114;
    color: #fff;
    padding-top: 3rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer li {
    margin: .5rem 0
}

.footer-bottom {
    padding: 1rem 0 2rem;
    color: #c9cbd1
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  
  label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
  }
  
  input,
  textarea,
  select {
    font: inherit;
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    outline: none;
    font-weight: normal;
    margin-bottom: 15px;
  }
  
.contact-information{
}
.contact-information p {
  margin: 14px 0px;
}
.contact-information .highlight {
  font-size: 30px;
  color: var(--main-color);
  font-weight: bold;
}

  textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .06);
  }
  .button {
    cursor: pointer;
  }

.badge {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    padding: .4rem .7rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem
}

.job {
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line)
}

.blog-meta {
    color: var(--muted);
    font-size: .95rem
}

.article {
    max-width: 850px;
    margin: 0 auto
}

.article h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1
}

.article img {
    width: 100%;
    border-radius: 24px;
    margin: 1.4rem 0 1.8rem;
    height: 420px;
    object-fit: cover
}

.article p {
    font-size: 1.05rem
}

.notice {
    padding: 1rem 1.2rem;
    background: #fef3c7;
    border-radius: 16px;
    border: 1px solid #fcd34d
}

@media (max-width:991px) {
    .main-nav {
        display: none
    }
    .nav-wrap .logo {
        flex: 1;
    }

    .grid-3,
    .grid-2,
    .stats,
    .footer-grid,
    .page-hero .wrap,
    .form-grid {
        grid-template-columns: 1fr
    }

    .nav-wrap {
        justify-content: space-between
    }

    .hero {
        min-height: 420px
    }
}



@media (max-width:500px) {
    .nav-wrap .desktop-cta {
        display: none;
    }
}