      :root {
        --primary-color: #b393ad;
        --secondary-color: #d3b6d0;
        --tertiary-color: #f3e6f1;
        --text-dark: #2c3e50;
        --text-light: #ecf0f1;
        --shadow-subtle: 0 2px 10px rgba(179, 147, 173, 0.15);
        --shadow-medium: 0 4px 20px rgba(179, 147, 173, 0.2);
        --gradient-primary: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          var(--secondary-color) 100%
        );
        --gradient-accent: linear-gradient(
          45deg,
          var(--secondary-color) 0%,
          var(--tertiary-color) 100%
        );
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        overflow-x: hidden;
      }
      .has-background-black,
      .has-background-black-bis,
      .has-background-black-ter {
        background: var(--gradient-primary) !important;
      }
      .has-text-white {
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.3) !important;
      }
      header {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(243, 230, 241, 0.9) 100%
        );
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(179, 147, 173, 0.1);
        position: relative;
        z-index: 1000;
        min-height: 80px;
        display: flex;
        align-items: center;
        box-shadow: var(--shadow-subtle);
      }
      .header-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
      }
      .logo-container {
        flex-shrink: 0;
        z-index: 1001;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(179, 147, 173, 0.3));
        transition: all 0.3s ease;
      }
      .logo-container:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(179, 147, 173, 0.4));
      }
      .nav-container {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-left: 2rem;
      }
      .main-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .nav-item {
        display: inline-block;
        position: relative;
        margin: 0.25rem;
      }
      .nav-item a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: clamp(0.875rem, 2vw, 1rem);
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(179, 147, 173, 0.2);
        backdrop-filter: blur(5px);
        white-space: nowrap;
        display: block;
      }
      .nav-item a:hover {
        background: var(--gradient-primary);
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
      }
      .nav-item a.active {
        background: var(--primary-color);
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
      }
      footer {
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #9c7b96 100%
        );
        color: white;
        padding: 3rem 0 1.5rem;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 20px,
          rgba(255, 255, 255, 0.05) 20px,
          rgba(255, 255, 255, 0.05) 40px
        );
        pointer-events: none;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 2;
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }
      .footer-section h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
      }
      .footer-section p,
      .footer-section a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        margin-bottom: 0.5rem;
        display: block;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
      }
      .footer-section a:hover {
        color: var(--tertiary-color);
        transform: translateX(5px);
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
      }
      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1rem;
      }
      .footer-links a {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
        margin-bottom: 0;
      }
      .footer-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .contact-info span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .contact-info span::before {
        content: "→";
        color: var(--tertiary-color);
        font-weight: bold;
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-medium);
        max-width: 350px;
        border: 1px solid rgba(179, 147, 173, 0.3);
        z-index: 10000;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.5s ease;
      }
      .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
      }
      .cookie-consent p {
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-size: 0.9rem;
        line-height: 1.5;
      }
      .cookie-buttons {
        display: flex;
        gap: 0.75rem;
        justify-content: flex-end;
      }
      .cookie-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.875rem;
      }
      .cookie-btn.accept {
        background: var(--primary-color);
        color: white;
      }
      .cookie-btn.accept:hover {
        background: #a084a0;
        transform: translateY(-1px);
      }
      .cookie-btn.decline {
        background: #e9ecef;
        color: var(--text-dark);
      }
      .cookie-btn.decline:hover {
        background: #dee2e6;
      }
      @media (max-width: 1024px) {
        .nav-container {
          margin-left: 1rem;
        }
        .main-nav {
          gap: 0.25rem;
        }
        .nav-item a {
          padding: 0.5rem 0.75rem;
          font-size: 0.875rem;
        }
      }
      @media (max-width: 768px) {
        .header-container {
          padding: 0 1rem;
          flex-direction: row;
          align-items: center;
          min-height: 70px;
        }
        .logo-container {
          margin-right: 1rem;
        }
        .nav-container {
          margin-left: 0;
          flex-grow: 1;
        }
        .main-nav {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 0.5rem;
          width: 100%;
        }
        .nav-item {
          margin: 0;
        }
        .nav-item a {
          padding: 0.5rem;
          font-size: 0.8rem;
          text-align: center;
        }
        .footer-content {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }
        .footer-links {
          flex-direction: column;
          gap: 0.75rem;
        }
        .cookie-consent {
          bottom: 10px;
          right: 10px;
          left: 10px;
          max-width: none;
        }
      }
      @media (max-width: 480px) {
        .header-container {
          flex-direction: column;
          padding: 0.75rem;
          gap: 0.75rem;
        }
        .logo-container {
          margin-right: 0;
        }
        .nav-container {
          width: 100%;
        }
        .main-nav {
          grid-template-columns: 1fr;
        }
        .nav-item a {
          padding: 0.75rem;
          font-size: 0.9rem;
        }
      }
      .contact-page-wrapper {
        min-height: 100vh;
        background: linear-gradient(135deg, #f3e6f1 0%, #d3b6d0 100%);
        padding: 0;
        margin: 0;
      }
      .contact-hero-section {
        background: linear-gradient(
            rgba(179, 147, 173, 0.9),
            rgba(179, 147, 173, 0.9)
          ),
          url("./documentation_images/NKxFyjZnS.jpg");
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 80px 20px;
        position: relative;
        overflow: hidden;
      }
      .contact-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 10px,
          rgba(255, 255, 255, 0.1) 10px,
          rgba(255, 255, 255, 0.1) 20px
        );
        z-index: 1;
      }
      .contact-hero-content {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }
      .contact-hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
        letter-spacing: -0.02em;
      }
      .contact-hero-subtitle {
        font-size: 1.3rem;
        color: #ffffff;
        margin-bottom: 40px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 1.6;
        opacity: 0.95;
      }
      .contact-main-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 80px 20px;
        background: #ffffff;
        box-shadow: 0 -10px 30px rgba(179, 147, 173, 0.2);
        position: relative;
        z-index: 3;
      }
      .contact-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
      .contact-info-section {
        background: linear-gradient(135deg, #f3e6f1, #ffffff);
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(179, 147, 173, 0.2);
        position: relative;
        overflow: hidden;
      }
      .contact-info-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(179, 147, 173, 0.1) 0%,
          transparent 70%
        );
        transform: rotate(45deg);
        z-index: 1;
      }
      .contact-info-content {
        position: relative;
        z-index: 2;
      }
      .contact-info-title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #b393ad;
        margin-bottom: 30px;
        line-height: 1.3;
      }
      .contact-info-description {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.7;
      }
      .contact-details-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .contact-detail-item {
        margin-bottom: 25px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
      }
      .contact-detail-icon {
        width: 24px;
        height: 24px;
        background: #b393ad;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 3px;
      }
      .contact-detail-text {
        font-size: 1rem;
        color: #333;
        line-height: 1.5;
      }
      .contact-detail-text strong {
        color: #b393ad;
        font-weight: 600;
      }
      .contact-form-section {
        background: #ffffff;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(179, 147, 173, 0.15);
        border: 2px solid #f3e6f1;
      }
      .contact-form-title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #b393ad;
        margin-bottom: 20px;
        line-height: 1.3;
      }
      .contact-form-subtitle {
        font-size: 1rem;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
      }
      .contact-form-wrapper {
        width: 100%;
      }
      .contact-form-fields {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }
      .contact-form-row {
        display: flex;
        gap: 20px;
      }
      .contact-form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .contact-form-label {
        font-size: 0.95rem;
        font-weight: 500;
        color: #b393ad;
        margin-bottom: 8px;
        line-height: 1.4;
      }
      .contact-form-input,
      .contact-form-select,
      .contact-form-textarea {
        width: 100%;
        padding: 15px 18px;
        border: 2px solid #d3b6d0;
        border-radius: 10px;
        font-size: 1rem;
        color: #333;
        background: #ffffff;
        transition: all 0.3s ease;
        box-sizing: border-box;
        min-height: 50px;
      }
      .contact-form-input:focus,
      .contact-form-select:focus,
      .contact-form-textarea:focus {
        outline: none;
        border-color: #b393ad;
        box-shadow: 0 0 0 3px rgba(179, 147, 173, 0.1);
      }
      .contact-form-textarea {
        min-height: 120px;
        resize: vertical;
      }
      .contact-form-submit {
        width: 100%;
        padding: 18px 30px;
        background: linear-gradient(135deg, #b393ad, #d3b6d0);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(179, 147, 173, 0.3);
      }
      .contact-form-submit:hover {
        background: linear-gradient(135deg, #a182a0, #c9a7c6);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(179, 147, 173, 0.4);
      }
      .contact-form-submit:active {
        transform: translateY(0);
      }
      .community-engagement-section {
        background: url("./documentation_images/pMVE.jpg");
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        padding: 100px 20px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
      }
      .community-engagement-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(179, 147, 173, 0.95),
          rgba(211, 182, 208, 0.9)
        );
        z-index: 1;
      }
      .community-engagement-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }
      .community-engagement-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        align-items: start;
      }
      .community-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease;
      }
      .community-card:hover {
        transform: translateY(-5px);
      }
      .community-card-title {
        font-size: 1.6rem;
        font-weight: 600;
        color: #b393ad;
        margin-bottom: 20px;
        line-height: 1.3;
      }
      .community-card-content {
        font-size: 1rem;
        color: #333;
        line-height: 1.6;
        margin-bottom: 25px;
      }
      .community-events-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .community-event-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(179, 147, 173, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .community-event-item:last-child {
        border-bottom: none;
      }
      .community-event-title {
        font-weight: 500;
        color: #333;
        font-size: 0.95rem;
      }
      .community-event-date {
        color: #b393ad;
        font-size: 0.9rem;
        font-weight: 500;
      }
      .newsletter-signup-form {
        display: flex;
        gap: 10px;
        margin-top: 20px;
      }
      .newsletter-input {
        flex: 1;
        padding: 12px 15px;
        border: 2px solid #d3b6d0;
        border-radius: 8px;
        font-size: 0.95rem;
        box-sizing: border-box;
      }
      .newsletter-button {
        padding: 12px 20px;
        background: #b393ad;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s ease;
      }
      .newsletter-button:hover {
        background: #a182a0;
      }
      @media (max-width: 768px) {
        .contact-hero-section {
          min-height: 50vh;
          padding: 60px 20px;
          background-attachment: scroll;
        }
        .contact-hero-title {
          font-size: 2.5rem;
        }
        .contact-hero-subtitle {
          font-size: 1.1rem;
        }
        .contact-main-container {
          padding: 60px 20px;
        }
        .contact-content-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .contact-info-section {
          padding: 40px 30px;
          order: 1;
        }
        .contact-form-section {
          padding: 40px 30px;
          order: 2;
        }
        .contact-form-row {
          flex-direction: column;
          gap: 25px;
        }
        .contact-form-group {
          width: 100%;
        }
        .contact-form-input,
        .contact-form-select,
        .contact-form-textarea {
          width: 100%;
          box-sizing: border-box;
        }
        .contact-form-textarea {
          min-height: 100px;
        }
        .community-engagement-section {
          padding: 80px 20px;
          background-attachment: scroll;
        }
        .community-engagement-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .community-card {
          padding: 30px 25px;
        }
        .newsletter-signup-form {
          flex-direction: column;
          gap: 15px;
        }
        .newsletter-input {
          width: 100%;
        }
        .newsletter-button {
          width: 100%;
        }
      }
      @media (max-width: 480px) {
        .contact-hero-title {
          font-size: 2rem;
        }
        .contact-info-section,
        .contact-form-section {
          padding: 30px 20px;
        }
        .contact-form-fields {
          gap: 20px;
        }
        .contact-form-input,
        .contact-form-select,
        .contact-form-textarea {
          padding: 12px 15px;
        }
        .community-card {
          padding: 25px 20px;
        }
      }