    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #243024;
  background: #f7f4ed;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

    header {
      background: linear-gradient(rgba(30, 62, 35, 0.72), rgba(30, 62, 35, 0.72)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      min-height: 82vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }

    .hero {
      max-width: 850px;
    }

    .logo {
      margin-bottom: 2rem;
    }

    .logo img {
      width: 260px;
      max-width: 65vw;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

   header h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.3rem;
  color: white;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}

    .subtitle {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

    .button-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .button {
      display: inline-block;
      padding: 0.9rem 1.4rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s ease, opacity 0.2s ease;
      min-width:250px;
text-align:center;
    }

    .button:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .primary {
      background: #f4c95d;
      color: #243024;
    }

.secondary {
  background: rgba(30, 62, 35, 0.35);
  border: 2px solid #f4c95d;
  color: #ffffff;
}

.secondary:hover {
  background: #f4c95d;
  color: #243024;
}

    section {
      padding: 4rem 1.3rem;
    }

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

    h2 {
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      margin-bottom: 1rem;
      color: #1e3e23;
    }

    .intro {
      font-size: 1.15rem;
      max-width: 800px;
      margin-bottom: 2rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .card {
      background: white;
      border-radius: 22px;
      padding: 1.5rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    }

    .card .icon {
      font-size: 2rem;
      margin-bottom: 0.7rem;
    }

    .card h3 {
      margin-bottom: 0.5rem;
      color: #1e3e23;
    }

    .highlight {
      background: #eaf0df;
    }

    .event-box {
      background: white;
      border-radius: 26px;
      padding: 2rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
      margin-top: 2rem;
    }

    .event-box strong {
      color: #1e3e23;
    }

    .contact-box {
      background: #1e3e23;
      color: white;
      border-radius: 28px;
      padding: 2.5rem;
      text-align: center;
    }

    .contact-box h2 {
      color: white;
    }

    .contact-box p {
      max-width: 750px;
      margin: 0 auto 1.5rem auto;
      font-size: 1.1rem;
    }

    .small-note {
      margin-top: 1rem;
      font-size: 0.95rem;
      opacity: 0.9;
    }
 