     * {
        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;
        }
      }
      .cookie-policy-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
        line-height: 1.7;
        color: #2c3e50;
      }
      .policy-header {
        text-align: center;
        margin: 60px 0 80px 0;
        padding: 40px 0;
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        border-radius: 16px;
        color: white;
        box-shadow: 0 8px 32px rgba(124, 171, 138, 0.3);
      }
      .policy-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .policy-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
      }
      .policy-content {
        background: white;
        border-radius: 20px;
        padding: 60px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
        margin-bottom: 40px;
        border: 1px solid #d4e5d7;
      }
      .policy-section {
        margin-bottom: 50px;
        padding-bottom: 40px;
        border-bottom: 1px solid #f0f4f1;
      }
      .policy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
      }
      .section-heading {
        font-size: 1.8rem;
        color: #7cab8a;
        margin-bottom: 25px;
        font-weight: 600;
        position: relative;
        padding-left: 20px;
      }
      .section-heading::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 30px;
        background: linear-gradient(to bottom, #7cab8a, #a9cab2);
        border-radius: 2px;
      }
      .policy-paragraph {
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: #34495e;
        text-align: justify;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .policy-list {
        margin: 25px 0;
        padding-left: 0;
        list-style: none;
      }
      .policy-list-item {
        margin-bottom: 15px;
        padding: 15px 20px;
        background: #f8fdf9;
        border-left: 4px solid #a9cab2;
        border-radius: 0 8px 8px 0;
        position: relative;
        font-size: 1.05rem;
        word-wrap: break-word;
      }
      .policy-list-item::before {
        content: "•";
        color: #7cab8a;
        font-weight: bold;
        position: absolute;
        left: -15px;
        top: 15px;
        font-size: 1.2rem;
      }
      .cookie-types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin: 35px 0;
      }
      .cookie-type-card {
        background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
        border: 2px solid #d4e5d7;
        border-radius: 12px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .cookie-type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(124, 171, 138, 0.15);
        border-color: #a9cab2;
      }
      .cookie-type-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
      }
      .cookie-type-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #7cab8a;
        margin-bottom: 15px;
        text-align: center;
      }
      .cookie-type-description {
        font-size: 1rem;
        color: #555;
        text-align: center;
        line-height: 1.6;
        word-wrap: break-word;
      }
      .highlight-box {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 35px 0;
        text-align: center;
        box-shadow: 0 8px 25px rgba(124, 171, 138, 0.2);
      }
      .highlight-text {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 15px;
      }
      .contact-section {
        background: #f8fdf9;
        padding: 40px;
        border-radius: 16px;
        margin-top: 50px;
        border: 2px solid #d4e5d7;
        text-align: center;
      }
      .contact-heading {
        font-size: 1.6rem;
        color: #7cab8a;
        margin-bottom: 20px;
        font-weight: 600;
      }
      .contact-info {
        font-size: 1.1rem;
        color: #34495e;
        margin-bottom: 10px;
        word-wrap: break-word;
      }
      .last-updated {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background: #f0f4f1;
        border-radius: 8px;
        color: #7cab8a;
        font-weight: 500;
      }
      @media (max-width: 768px) {
        .cookie-policy-main {
          padding: 0 15px;
        }
        .policy-title {
          font-size: 2.2rem;
        }
        .policy-content {
          padding: 30px 25px;
        }
        .section-heading {
          font-size: 1.5rem;
        }
        .cookie-types-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .policy-paragraph {
          font-size: 1rem;
          text-align: left;
        }
        .policy-list-item {
          font-size: 1rem;
        }
        .contact-section {
          padding: 25px 20px;
        }
      }
      @media (max-width: 480px) {
        .policy-title {
          font-size: 1.8rem;
        }
        .policy-content {
          padding: 20px 15px;
        }
        .section-heading {
          font-size: 1.3rem;
        }
        .policy-paragraph {
          font-size: 0.95rem;
        }
      }