* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: #f5efe6;
      font-family: "Georgia", "Times New Roman", serif;
      color: #3b2e1e;
      line-height: 1.6;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    header, footer {
      background: #2d6a4f;
      color: #f5efe6;
      padding: 20px 0;
      border-bottom: 3px solid #b78a4b;
    }
    header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    h1 {
      font-size: 2.2rem;
      text-align: center;
      letter-spacing: 2px;
      text-shadow: 2px 2px 0 #b78a4b;
      margin-bottom: 15px;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 10px;
    }
    .nav-links a {
      color: #f5efe6;
      text-decoration: none;
      padding: 8px 18px;
      border: 1px solid #b78a4b;
      border-radius: 30px;
      background: #3b7a5a;
      font-size: 0.95rem;
      transition: 0.3s;
    }
    .nav-links a:hover {
      background: #b78a4b;
      color: #2d6a4f;
    }
    section {
      background: rgba(255, 250, 240, 0.7);
      margin: 40px 0;
      padding: 30px 25px;
      border-radius: 18px;
      box-shadow: 4px 4px 12px rgba(45, 106, 79, 0.15);
      border: 1px solid #d4c3a3;
      backdrop-filter: blur(2px);
    }
    h2 {
      font-size: 1.8rem;
      color: #2d6a4f;
      border-left: 7px solid #b78a4b;
      padding-left: 15px;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }
    .geo-text {
      font-size: 1.05rem;
      text-indent: 2em;
      margin: 15px 0;
    }
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }
    .card {
      background: #fdf8f0;
      padding: 20px;
      border-radius: 15px;
      border: 1px solid #dcc9ad;
      box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s;
    }
    .card:hover {
      transform: translateY(-4px);
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 12px;
      border: 2px solid #b78a4b;
    }
    .btn {
      display: inline-block;
      background: #2d6a4f;
      color: #f5efe6;
      padding: 10px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: bold;
      border: 1px solid #b78a4b;
      transition: 0.3s;
    }
    .btn:hover {
      background: #b78a4b;
      color: #2d6a4f;
    }
    .stats-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 20px;
      text-align: center;
    }
    .stat-item {
      background: #ede5d3;
      padding: 20px 30px;
      border-radius: 40px;
      min-width: 140px;
      border: 1px solid #b78a4b;
    }
    .stat-number {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2d6a4f;
    }
    .faq-item {
      margin-bottom: 25px;
      border-bottom: 1px dashed #b78a4b;
      padding-bottom: 15px;
    }
    .faq-question {
      font-weight: bold;
      font-size: 1.2rem;
      color: #2d6a4f;
    }
    .faq-answer {
      margin-top: 8px;
      padding-left: 20px;
      border-left: 3px solid #b78a4b;
    }
    .news-item {
      margin-bottom: 25px;
      padding: 15px;
      background: #faf5ea;
      border-radius: 12px;
    }
    .news-date {
      color: #7a6236;
      font-size: 0.9rem;
      font-family: monospace;
      margin-bottom: 5px;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin: 20px 0 10px;
    }
    .footer-links a {
      color: #f5efe6;
      text-decoration: underline;
      font-size: 0.9rem;
    }
    .footer-links a:hover {
      color: #b78a4b;
    }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #b78a4b;
      padding-top: 15px;
      margin-top: 15px;
      font-size: 0.85rem;
    }
    .footer-bottom a {
      color: #f5efe6;
      margin: 0 10px;
    }
    @media (max-width: 600px) {
      h1 { font-size: 1.6rem; }
      .nav-links { gap: 10px; }
    }