      * {
        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;
        }
      }
      .privacy-policy-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 30px;
        width: 100%;
        box-sizing: border-box;
      }
      .privacy-hero-section {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        text-align: center;
        padding: 80px 40px;
        margin-bottom: 60px;
        border-radius: 12px;
        color: white;
        position: relative;
        overflow: hidden;
      }
      .privacy-hero-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: heroFloat 20s infinite ease-in-out;
      }
      @keyframes heroFloat {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
      }
      .privacy-main-title {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .privacy-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        opacity: 0.95;
        line-height: 1.6;
      }
      .privacy-content-wrapper {
        background: white;
        border-radius: 16px;
        padding: 50px;
        box-shadow: 0 8px 32px rgba(124, 171, 138, 0.15);
        border: 1px solid #d4e5d7;
        margin-bottom: 40px;
      }
      .privacy-section-header {
        font-size: 2.2rem;
        color: #7cab8a;
        margin-bottom: 30px;
        margin-top: 50px;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
      }
      .privacy-section-header:first-child {
        margin-top: 0;
      }
      .privacy-section-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
        border-radius: 2px;
      }
      .privacy-subsection-title {
        font-size: 1.6rem;
        color: #2c3e50;
        margin-bottom: 20px;
        margin-top: 40px;
        font-weight: 600;
      }
      .privacy-text-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #34495e;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
      }
      .privacy-text-content strong {
        color: #7cab8a;
        font-weight: 600;
      }
      .privacy-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 40px 0;
      }
      .privacy-info-card {
        background: #f8fbf9;
        padding: 30px;
        border-radius: 12px;
        border-left: 4px solid #7cab8a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .privacy-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(124, 171, 138, 0.2);
      }
      .privacy-card-title {
        font-size: 1.4rem;
        color: #7cab8a;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .privacy-card-content {
        font-size: 1rem;
        line-height: 1.7;
        color: #34495e;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .privacy-list-container {
        margin: 30px 0;
      }
      .privacy-custom-list {
        list-style: none;
        padding: 0;
      }
      .privacy-custom-list li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #34495e;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .privacy-custom-list li::before {
        content: "";
        position: absolute;
        left: 0;
        color: #7cab8a;
        font-weight: bold;
        font-size: 1.2rem;
      }
      .privacy-contact-section {
        background: linear-gradient(135deg, #d4e5d7 0%, #a9cab2 100%);
        padding: 50px;
        border-radius: 16px;
        margin-top: 60px;
        text-align: center;
      }
      .privacy-contact-title {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 25px;
        font-weight: 600;
      }
      .privacy-contact-info {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #34495e;
        margin-bottom: 20px;
      }
      .privacy-contact-link {
        color: #7cab8a;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }
      .privacy-contact-link:hover {
        color: #2c3e50;
        text-decoration: underline;
      }
      .privacy-highlight-box {
        background: #f1f8f3;
        border: 2px solid #d4e5d7;
        border-radius: 12px;
        padding: 30px;
        margin: 30px 0;
        position: relative;
      }
      .privacy-highlight-box::before {
        content: "!";
        position: absolute;
        top: -15px;
        left: 20px;
        background: #7cab8a;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
      }
      .privacy-highlight-text {
        font-size: 1.1rem;
        color: #2c3e50;
        line-height: 1.7;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .privacy-date-updated {
        text-align: center;
        font-size: 0.95rem;
        color: #7f8c8d;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #d4e5d7;
      }
      @media (max-width: 768px) {
        .privacy-policy-container {
          padding: 20px 16px;
        }
        .privacy-hero-section {
          padding: 60px 20px;
          margin-bottom: 40px;
        }
        .privacy-main-title {
          font-size: 2.4rem;
        }
        .privacy-subtitle {
          font-size: 1.1rem;
        }
        .privacy-content-wrapper {
          padding: 30px 20px;
        }
        .privacy-section-header {
          font-size: 1.8rem;
          margin-top: 40px;
        }
        .privacy-subsection-title {
          font-size: 1.4rem;
        }
        .privacy-text-content {
          font-size: 1rem;
        }
        .privacy-info-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .privacy-info-card {
          padding: 20px;
        }
        .privacy-contact-section {
          padding: 30px 20px;
        }
        .privacy-contact-title {
          font-size: 1.6rem;
        }
        .privacy-contact-info {
          font-size: 1rem;
        }
        .privacy-highlight-box {
          padding: 20px;
        }
      }
      @media (max-width: 480px) {
        .privacy-main-title {
          font-size: 2rem;
        }
        .privacy-section-header {
          font-size: 1.6rem;
        }
        .privacy-text-content {
          font-size: 0.95rem;
        }
        .privacy-custom-list li {
          font-size: 1rem;
        }
      }