body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f4f4f4;
}

header {
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    flex-wrap: wrap;
}

.logo {
    height: 52px;
    max-width: 220px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

nav a {
    text-decoration: none;
    color: #2f8f3d;
    font-weight: 700;
    font-size: 16px;
}

.hero {
    min-height: 100vh;
    background: url('../images/hq.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 36px 28px;
    max-width: 760px;
    border-radius: 10px;
}

.overlay h1 {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.1;
}

.overlay p {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
}

.section {
    padding: 90px 20px;
}

.dark {
    background: linear-gradient(180deg, #02240f 0%, #06351a 100%);
    color: white;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.section p,
.section li {
    font-size: 18px;
    line-height: 1.7;
}

.image {
    width: 100%;
    margin: 24px 0;
    border-radius: 18px;
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.card {
    background: #259243;
    padding: 28px;
    border-radius: 18px;
    color: white;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 20px;
}

footer {
    text-align: center;
    padding: 28px 20px;
    background: #111;
    color: white;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav {
        align-items: flex-start;
        gap: 12px;
    }

    .logo {
        height: 42px;
        max-width: 180px;
    }

    nav {
        gap: 12px 16px;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        min-height: 78vh;
        padding: 110px 16px 40px;
    }

    .overlay {
        padding: 24px 18px;
    }

    .overlay h1 {
        font-size: 34px;
    }

    .overlay p {
        font-size: 16px;
    }

    .section {
        padding: 70px 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section p,
    .section li {
        font-size: 16px;
    }

    .card {
        padding: 22px;
    }
}

/* CONTACT SECTION */
.contact-grid {
  display: block;
  margin-top: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.12) !important;
  color: white !important;
  padding: 24px !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card h3 {
  margin: 0 0 12px 0;
  color: white !important;
}

.contact-card p {
  margin: 0;
  color: white !important;
}

.contact-card a {
  color: #c9e68a !important;
  text-decoration: none;
  font-weight: 600;
}

.card a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.card a:link,
.card a:visited,
.card a:active {
  color: white;
}

.card a:hover {
  text-decoration: underline;
  opacity: 0.7;
  color: #d4ffd4;
}