     :root {
        --primary-color: #9d7c69;
        --secondary-color: #baa9a0;
        --tertiary-color: #d7d0cc;
        --text-primary: #2c2c2c;
        --text-secondary: #6b6b6b;
        --background-light: #fafafa;
        --shadow-subtle: 0 2px 12px rgba(157, 124, 105, 0.1);
        --shadow-medium: 0 4px 20px rgba(157, 124, 105, 0.15);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
        background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        min-height: 100vh;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      header {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(250, 250, 250, 0.9) 100%
        );
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(157, 124, 105, 0.1);
        position: relative;
        z-index: 1000;
        min-height: 80px;
        box-shadow: var(--shadow-subtle);
      }
      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        min-height: 80px;
        position: relative;
      }
      .logo-container {
        flex: 0 0 auto;
        z-index: 1001;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(157, 124, 105, 0.2));
        transition: var(--transition);
      }
      .logo-container:hover img {
        filter: drop-shadow(0 4px 8px rgba(157, 124, 105, 0.3));
        transform: translateY(-1px);
      }
      .nav-container {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        z-index: 999;
      }
      .main-nav {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 2vw, 2rem);
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .main-nav a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        padding: 10px 16px;
        border-radius: 8px;
        transition: var(--transition);
        position: relative;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        outline: 1px solid transparent;
      }
      .main-nav a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--primary-color),
          var(--secondary-color)
        );
        transition: var(--transition);
        transform: translateX(-50%);
      }
      .main-nav a:hover {
        color: var(--primary-color);
        background: rgba(157, 124, 105, 0.05);
        transform: translateY(-1px);
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
        outline: 1px solid rgba(157, 124, 105, 0.1);
      }
      .main-nav a:hover::before {
        width: 100%;
      }
      footer {
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #8b6b5a 100%
        );
        color: white;
        margin-top: auto;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.1;
        z-index: 1;
      }
      .footer-content {
        position: relative;
        z-index: 2;
        padding: 60px 0 30px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-section h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
      }
      .footer-section p,
      .footer-section a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        line-height: 1.7;
        transition: var(--transition);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .footer-section a:hover {
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-links a {
        display: inline-block;
        padding: 8px 0;
        border-bottom: 1px solid transparent;
        transition: var(--transition);
      }
      .footer-links a:hover {
        border-bottom-color: rgba(255, 255, 255, 0.3);
        padding-left: 5px;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 8px 0;
      }
      .contact-item::before {
        content: "●";
        color: var(--tertiary-color);
        font-size: 0.8rem;
        margin-top: 4px;
        flex-shrink: 0;
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #8b6b5a 100%
        );
        color: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-medium);
        max-width: 350px;
        z-index: 10000;
        transform: translateY(100px);
        opacity: 0;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
      }
      .cookie-consent p {
        margin-bottom: 15px;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .cookie-buttons {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
      }
      .cookie-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 500;
        transition: var(--transition);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
      }
      .cookie-btn.accept {
        background: white;
        color: var(--primary-color);
        border: 1px solid rgba(255, 255, 255, 0.9);
      }
      .cookie-btn.accept:hover {
        background: var(--tertiary-color);
        transform: translateY(-1px);
      }
      .cookie-btn.decline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .cookie-btn.decline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
      }
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          gap: 15px;
          padding: 20px 0;
        }
        .nav-container {
          justify-content: center;
        }
        .main-nav {
          justify-content: center;
          gap: 1rem;
        }
        .main-nav a {
          font-size: 0.9rem;
          padding: 8px 12px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .cookie-consent {
          bottom: 10px;
          right: 10px;
          left: 10px;
          max-width: none;
        }
      }
      @media (max-width: 480px) {
        .main-nav {
          flex-direction: column;
          gap: 8px;
        }
        .main-nav a {
          padding: 10px 20px;
          text-align: center;
          width: 100%;
        }
      }
      .privacy-policy-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: Georgia, serif;
        line-height: 1.6;
        color: #333;
      }
      .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 2px solid #9d7c69;
      }
      .privacy-header h1 {
        font-size: 2.5em;
        color: #9d7c69;
        margin-bottom: 10px;
        font-weight: 600;
      }
      .privacy-last-updated {
        font-style: italic;
        color: #666;
        font-size: 0.95em;
      }
      .privacy-section {
        margin-bottom: 40px;
        padding: 20px 0;
      }
      .privacy-section h2 {
        font-size: 1.8em;
        color: #9d7c69;
        margin-bottom: 20px;
        font-weight: 500;
        border-left: 4px solid #baa9a0;
        padding-left: 15px;
      }
      .privacy-section h3 {
        font-size: 1.3em;
        color: #9d7c69;
        margin-bottom: 15px;
        margin-top: 25px;
        font-weight: 500;
      }
      .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
      }
      .privacy-section ul {
        margin-bottom: 20px;
        padding-left: 25px;
      }
      .privacy-section li {
        margin-bottom: 8px;
        overflow-wrap: break-word;
        word-wrap: break-word;
      }
      .privacy-contact-info {
        background-color: #f5f3f2;
        padding: 25px;
        border-radius: 8px;
        border-left: 5px solid #9d7c69;
        margin-top: 30px;
      }
      .privacy-contact-info h3 {
        color: #9d7c69;
        margin-bottom: 15px;
        font-size: 1.2em;
      }
      .privacy-contact-info p {
        margin-bottom: 8px;
        color: #555;
      }
      .privacy-important-notice {
        background-color: #faf9f8;
        padding: 20px;
        border-radius: 6px;
        border: 1px solid #d7d0cc;
        margin: 25px 0;
      }
      .privacy-important-notice h4 {
        color: #9d7c69;
        margin-bottom: 12px;
        font-size: 1.1em;
        font-weight: 600;
      }
      .privacy-data-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 25px 0;
      }
      .privacy-data-type-card {
        background-color: #f9f7f6;
        padding: 20px;
        border-radius: 6px;
        border-top: 3px solid #baa9a0;
      }
      .privacy-data-type-card h4 {
        color: #9d7c69;
        margin-bottom: 10px;
        font-size: 1.1em;
      }
      .privacy-rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin: 20px 0;
      }
      .privacy-right-item {
        background-color: #fefefe;
        padding: 15px;
        border-radius: 4px;
        border: 1px solid #e8e4e2;
      }
      .privacy-right-item h5 {
        color: #9d7c69;
        margin-bottom: 8px;
        font-size: 1em;
        font-weight: 500;
      }
      .privacy-retention-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #d7d0cc;
      }
      .privacy-retention-table th,
      .privacy-retention-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #e8e4e2;
      }
      .privacy-retention-table th {
        background-color: #f5f3f2;
        color: #9d7c69;
        font-weight: 600;
      }
      .privacy-retention-table tr:hover {
        background-color: #faf9f8;
      }
      @media (max-width: 768px) {
        .privacy-policy-container {
          padding: 20px 16px;
        }
        .privacy-header h1 {
          font-size: 2em;
        }
        .privacy-section h2 {
          font-size: 1.5em;
        }
        .privacy-data-types {
          grid-template-columns: 1fr;
        }
        .privacy-rights-grid {
          grid-template-columns: 1fr;
        }
        .privacy-retention-table {
          font-size: 0.9em;
        }
        .privacy-retention-table th,
        .privacy-retention-table td {
          padding: 8px;
        }
      }
      @media (max-width: 480px) {
        .privacy-policy-container {
          padding: 16px 12px;
        }
        .privacy-header h1 {
          font-size: 1.8em;
        }
        .privacy-section {
          margin-bottom: 30px;
        }
        .privacy-contact-info {
          padding: 20px;
        }
      }