     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
        min-height: 100vh;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      header {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        min-height: 85px;
        position: relative;
        box-shadow: 0 4px 20px rgba(124, 171, 138, 0.15);
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23fff" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%23fff" opacity="0.1"/></svg>')
          repeat;
        animation: float 20s infinite linear;
      }
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }
      .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 85px;
        position: relative;
        z-index: 10;
      }
      .logo-container {
        display: flex;
        align-items: center;
        z-index: 15;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
      }
      .logo-container:hover img {
        transform: scale(1.05);
      }
      .nav-container {
        display: flex;
        align-items: center;
        z-index: 12;
      }
      nav ul {
        display: flex;
        list-style: none;
        gap: clamp(15px, 3vw, 35px);
        margin: 0;
        padding: 0;
      }
      nav ul li {
        position: relative;
      }
      nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(14px, 1.5vw, 16px);
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
      }
      nav ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
      }
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          gap: 15px;
          padding: 15px 0;
          min-height: auto;
        }
        nav ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 12px;
        }
        nav ul li a {
          padding: 10px 14px;
          font-size: 14px;
        }
      }
      footer {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: #ecf0f1;
        padding: 60px 0 30px;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2, #d4e5d7);
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-section h3 {
        color: #7cab8a;
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-section h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
        border-radius: 2px;
      }
      .footer-section p,
      .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s ease;
      }
      .footer-section a:hover {
        color: #7cab8a;
        text-shadow: 0 0 8px rgba(124, 171, 138, 0.3);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-links a {
        padding: 5px 0;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
      }
      .footer-links a:hover {
        border-bottom-color: #7cab8a;
        padding-left: 10px;
      }
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #34495e;
        color: #95a5a6;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .contact-item::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #7cab8a;
        border-radius: 50%;
        flex-shrink: 0;
      }
      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        footer {
          padding: 40px 0 20px;
        }
      }
      .cookie-popup {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        color: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
        animation: slideUp 0.5s ease-out;
      }
      @keyframes slideUp {
        from {
          transform: translateY(100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .cookie-popup.show {
        display: block;
      }
      .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
      }
      .cookie-text {
        flex: 1;
        font-size: 14px;
        line-height: 1.5;
      }
      .cookie-actions {
        display: flex;
        gap: 12px;
      }
      .cookie-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        font-weight: 500;
      }
      .cookie-accept {
        background: white;
        color: #7cab8a;
      }
      .cookie-accept:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
      }
      .cookie-decline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .cookie-decline:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      @media (max-width: 640px) {
        .cookie-content {
          flex-direction: column;
          text-align: center;
        }
        .cookie-popup {
          left: 10px;
          right: 10px;
        }
      }
      .contact-page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .contact-hero-section {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        padding: 60px 0;
        text-align: center;
        margin-bottom: 50px;
      }
      .contact-hero-title {
        font-size: 3rem;
        color: white;
        margin-bottom: 20px;
        font-weight: 700;
      }
      .contact-hero-subtitle {
        font-size: 1.3rem;
        color: white;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .engagement-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 50px;
      }
      .contact-info-block {
        background: #d4e5d7;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(124, 171, 138, 0.15);
      }
      .contact-info-title {
        font-size: 2rem;
        color: #7cab8a;
        margin-bottom: 30px;
        font-weight: 600;
      }
      .contact-detail-item {
        margin-bottom: 20px;
        padding: 15px;
        background: white;
        border-radius: 8px;
        border-left: 4px solid #7cab8a;
      }
      .contact-detail-label {
        font-weight: 600;
        color: #7cab8a;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
      }
      .contact-detail-value {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.4;
      }
      .engagement-form-block {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(124, 171, 138, 0.15);
        border: 2px solid #d4e5d7;
      }
      .form-section-title {
        font-size: 2rem;
        color: #7cab8a;
        margin-bottom: 30px;
        font-weight: 600;
      }
      .engagement-form {
        width: 100%;
      }
      .form-group {
        margin-bottom: 25px;
      }
      .form-label {
        display: block;
        font-weight: 600;
        color: #7cab8a;
        margin-bottom: 8px;
        font-size: 1rem;
      }
      .form-input {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #d4e5d7;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
      }
      .form-input:focus {
        outline: none;
        border-color: #7cab8a;
        box-shadow: 0 0 0 3px rgba(124, 171, 138, 0.1);
      }
      .form-textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #d4e5d7;
        border-radius: 8px;
        font-size: 1rem;
        min-height: 120px;
        resize: vertical;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
      }
      .form-textarea:focus {
        outline: none;
        border-color: #7cab8a;
        box-shadow: 0 0 0 3px rgba(124, 171, 138, 0.1);
      }
      .form-select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #d4e5d7;
        border-radius: 8px;
        font-size: 1rem;
        background: white;
        cursor: pointer;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
      }
      .form-select:focus {
        outline: none;
        border-color: #7cab8a;
        box-shadow: 0 0 0 3px rgba(124, 171, 138, 0.1);
      }
      .engagement-submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 10;
      }
      .engagement-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(124, 171, 138, 0.3);
      }
      .engagement-submit-btn:active {
        transform: translateY(0);
      }
      .community-events-section {
        background: linear-gradient(135deg, #d4e5d7 0%, #a9cab2 100%);
        padding: 50px 0;
        margin-top: 50px;
      }
      .events-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .events-title {
        font-size: 2.5rem;
        color: #7cab8a;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 700;
      }
      .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
      }
      .event-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(124, 171, 138, 0.15);
        transition: transform 0.3s ease;
      }
      .event-card:hover {
        transform: translateY(-5px);
      }
      .event-date {
        font-size: 0.9rem;
        color: #7cab8a;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
      }
      .event-title {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .event-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
      }
      .event-location {
        font-size: 0.9rem;
        color: #7cab8a;
        font-weight: 500;
      }
      @media (max-width: 768px) {
        .contact-page-wrapper {
          padding: 0 16px;
        }
        .contact-hero-section {
          padding: 40px 0;
          margin-bottom: 30px;
        }
        .contact-hero-title {
          font-size: 2rem;
        }
        .contact-hero-subtitle {
          font-size: 1.1rem;
        }
        .engagement-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          margin-bottom: 30px;
        }
        .contact-info-block {
          padding: 30px 20px;
          margin-bottom: 20px;
        }
        .engagement-form-block {
          padding: 30px 20px;
        }
        .contact-info-title,
        .form-section-title {
          font-size: 1.5rem;
        }
        .form-input,
        .form-textarea,
        .form-select {
          padding: 12px;
        }
        .form-textarea {
          min-height: 100px;
        }
        .events-title {
          font-size: 2rem;
        }
        .events-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .event-card {
          padding: 25px 20px;
        }
        .events-container {
          padding: 0 16px;
        }
      }