* {
      box-sizing: border-box;
      }
      body {
      font-family: 'Georgia', 'Times New Roman', serif;
      line-height: 1.6;
      color: #2d2d2d;
      margin: 0;
      padding: 0;
      background-color: #fefefe;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 100%);
      border-bottom: 3px solid #b0957b;
      position: relative;
      min-height: 80px;
      padding: 15px 0;
      }
      .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      min-height: 50px;
      }
      .logo-container {
      flex: 0 0 auto;
      z-index: 100;
      position: relative;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 8px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(176, 149, 123, 0.15);
      }
      .logo-container img {
      height: 45px;
      width: auto;
      display: block;
      }
      .main-nav {
      flex: 1 1 auto;
      display: flex;
      justify-content: flex-end;
      }
      .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      align-items: center;
      }
      .nav-list li {
      margin: 0;
      }
      .nav-list a {
      color: #2d2d2d;
      text-decoration: none;
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      font-weight: 500;
      padding: 12px 18px;
      border-radius: 6px;
      transition: all 0.2s ease;
      white-space: nowrap;
      border: 2px solid transparent;
      position: relative;
      }
      .nav-list a:hover,
      .nav-list a:focus {
      background-color: rgba(176, 149, 123, 0.2);
      color: #1a1a1a;
      border-color: #b0957b;
      outline: none;
      }
      .nav-list a:focus {
      box-shadow: 0 0 0 2px #b0957b;
      }
      footer {
      background: linear-gradient(135deg, #c5bcb1 0%, #b0957b 100%);
      color: #2d2d2d;
      padding: 40px 0 25px 0;
      margin-top: 50px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 25px;
      }
      .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #1a1a1a;
      border-bottom: 2px solid #e6e2df;
      padding-bottom: 8px;
      }
      .contact-info p {
      margin: 8px 0;
      font-size: 0.95rem;
      }
      .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .footer-links li {
      margin-bottom: 8px;
      }
      .footer-links a {
      color: #2d2d2d;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
      padding: 4px 8px;
      border-radius: 4px;
      }
      .footer-links a:hover,
      .footer-links a:focus {
      color: #1a1a1a;
      background-color: rgba(230, 226, 223, 0.3);
      outline: 2px solid #e6e2df;
      }
      .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
      background-color: rgba(255, 255, 255, 0.15);
      padding: 12px;
      border-radius: 8px;
      }
      .footer-logo img {
      height: 35px;
      width: auto;
      }
      .footer-logo span {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a1a;
      }
      .copyright {
      text-align: center;
      border-top: 1px solid #e6e2df;
      padding-top: 20px;
      font-size: 0.9rem;
      color: #3a3a3a;
      }
      .cookie-consent {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #ffffff;
      border: 3px solid #b0957b;
      border-radius: 12px;
      padding: 25px;
      max-width: 420px;
      box-shadow: 0 8px 25px rgba(176, 149, 123, 0.3);
      z-index: 1000;
      font-size: 0.9rem;
      line-height: 1.5;
      display: none;
      }
      .cookie-consent.show {
      display: block;
      animation: slideIn 0.4s ease-out;
      }
      @keyframes slideIn {
      from {
      transform: translateX(100%);
      opacity: 0;
      }
      to {
      transform: translateX(0);
      opacity: 1;
      }
      }
      .cookie-consent p {
      margin: 0 0 15px 0;
      color: #2d2d2d;
      }
      .cookie-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 15px;
      }
      .cookie-btn {
      padding: 10px 18px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      }
      .cookie-btn.accept {
      background-color: #b0957b;
      color: white;
      text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
      }
      .cookie-btn.accept:hover,
      .cookie-btn.accept:focus {
      background-color: #9d8469;
      outline: 2px solid #2d2d2d;
      }
      .cookie-btn.reject {
      background-color: #e6e2df;
      color: #2d2d2d;
      border: 1px solid #c5bcb1;
      }
      .cookie-btn.reject:hover,
      .cookie-btn.reject:focus {
      background-color: #c5bcb1;
      outline: 2px solid #2d2d2d;
      }
      .cookie-policy-link {
      color: #b0957b;
      text-decoration: underline;
      font-weight: 500;
      }
      .cookie-policy-link:hover,
      .cookie-policy-link:focus {
      color: #9d8469;
      outline: 1px solid #b0957b;
      background-color: rgba(176, 149, 123, 0.1);
      padding: 2px 4px;
      border-radius: 3px;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      text-align: center;
      gap: 15px;
      }
      .main-nav {
      justify-content: center;
      width: 100%;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .nav-list a {
      font-size: 0.9rem;
      padding: 10px 12px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-consent {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      bottom: auto;
      width: 85%;
      max-width: 400px;
      padding: 30px;
      font-size: 18px;
      line-height: 1.7;
      }
      .cookie-consent p {
      margin-bottom: 20px;
      }
      .cookie-buttons {
      flex-direction: column;
      gap: 15px;
      }
      .cookie-btn {
      min-height: 50px;
      font-size: 20px;
      padding: 15px 20px;
      }
      .cookie-policy-link {
      font-size: 18px;
      padding: 4px 8px;
      }
      }
      @media (max-width: 480px) {
      .nav-list {
      flex-direction: column;
      gap: 8px;
      width: 100%;
      }
      .nav-list a {
      width: 100%;
      text-align: center;
      padding: 12px;
      }
      .container {
      padding: 0 15px;
      }
      }
      h1, h2, h3, h4, h5, h6 {
      font-family: 'Georgia', serif;
      line-height: 1.3;
      }
      .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      }
      [role="banner"] {
      position: relative;
      }
      [role="navigation"] ul {
      margin: 0;
      padding: 0;
      }
      [role="contentinfo"] {
      position: relative;
      }
      .privacy-policy-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 30px;
      background: linear-gradient(135deg, #f8f6f4 0%, #e6e2df 100%);
      min-height: 100vh;
      box-sizing: border-box;
      }
      .privacy-hero-section {
      text-align: center;
      margin-bottom: 80px;
      padding: 50px 40px;
      background: #b0957b;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      }
      .privacy-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
      pointer-events: none;
      }
      .privacy-main-title {
      font-size: 3.2rem;
      color: #ffffff;
      font-weight: 700;
      margin: 0 0 20px 0;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      position: relative;
      z-index: 2;
      }
      .privacy-subtitle {
      font-size: 1.3rem;
      color: #f5f5f5;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      }
      .privacy-last-updated {
      background: #c5bcb1;
      padding: 25px 35px;
      border-radius: 15px;
      margin-bottom: 60px;
      text-align: center;
      border-left: 6px solid #b0957b;
      }
      .privacy-update-text {
      font-size: 1.1rem;
      color: #4a4a4a;
      margin: 0;
      font-weight: 600;
      }
      .privacy-content-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      }
      .privacy-section {
      background: #ffffff;
      padding: 45px 40px;
      border-radius: 18px;
      box-shadow: 0 8px 25px rgba(176, 149, 123, 0.15);
      border: 1px solid rgba(197, 188, 177, 0.3);
      position: relative;
      }
      .privacy-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #b0957b 0%, #c5bcb1 100%);
      border-radius: 0 0 0 18px;
      }
      .privacy-section-title {
      font-size: 2rem;
      color: #b0957b;
      margin: 0 0 25px 0;
      font-weight: 700;
      padding-left: 20px;
      position: relative;
      }
      .privacy-section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 20px;
      width: 60px;
      height: 3px;
      background: #c5bcb1;
      border-radius: 2px;
      }
      .privacy-text-content {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333333;
      margin: 0 0 20px 20px;
      }
      .privacy-text-content:last-child {
      margin-bottom: 0;
      }
      .privacy-subsection-title {
      font-size: 1.4rem;
      color: #5a5a5a;
      font-weight: 600;
      margin: 35px 0 18px 20px;
      position: relative;
      padding-left: 15px;
      }
      .privacy-subsection-title::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #b0957b;
      font-size: 1.6rem;
      top: -2px;
      }
      .privacy-list {
      margin: 20px 0 20px 35px;
      padding: 0;
      list-style: none;
      }
      .privacy-list-item {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #444444;
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
      }
      .privacy-list-item::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #c5bcb1;
      font-weight: bold;
      font-size: 1.1rem;
      }
      .privacy-highlight-box {
      background: linear-gradient(135deg, #e6e2df 0%, #f0eeec 100%);
      padding: 30px;
      border-radius: 12px;
      margin: 30px 20px;
      border-left: 4px solid #b0957b;
      }
      .privacy-highlight-text {
      font-size: 1.1rem;
      color: #2c2c2c;
      line-height: 1.6;
      margin: 0;
      font-weight: 500;
      }
      .privacy-contact-section {
      background: linear-gradient(135deg, #b0957b 0%, #9d8568 100%);
      color: #ffffff;
      text-align: center;
      padding: 50px 40px;
      border-radius: 20px;
      margin-top: 40px;
      }
      .privacy-contact-title {
      font-size: 2.2rem;
      margin: 0 0 25px 0;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
      }
      .privacy-contact-info {
      font-size: 1.2rem;
      line-height: 1.8;
      margin: 0;
      opacity: 0.95;
      }
      .privacy-strong-text {
      font-weight: 600;
      color: #b0957b;
      }
      .privacy-email-link {
      color: #b0957b;
      text-decoration: underline;
      font-weight: 600;
      transition: color 0.3s ease;
      }
      .privacy-email-link:hover {
      color: #9d8568;
      text-decoration: none;
      }
      @media screen and (max-width: 768px) {
      .privacy-policy-container {
      padding: 30px 20px;
      }
      .privacy-hero-section {
      padding: 35px 25px;
      margin-bottom: 50px;
      }
      .privacy-main-title {
      font-size: 2.4rem;
      margin-bottom: 15px;
      }
      .privacy-subtitle {
      font-size: 1.1rem;
      }
      .privacy-last-updated {
      padding: 20px 25px;
      margin-bottom: 40px;
      }
      .privacy-section {
      padding: 30px 25px;
      margin-bottom: 30px;
      }
      .privacy-section-title {
      font-size: 1.6rem;
      margin-bottom: 20px;
      }
      .privacy-text-content {
      font-size: 1rem;
      margin-left: 10px;
      }
      .privacy-subsection-title {
      font-size: 1.2rem;
      margin: 25px 0 15px 10px;
      padding-left: 12px;
      }
      .privacy-list {
      margin-left: 25px;
      }
      .privacy-highlight-box {
      margin: 25px 10px;
      padding: 25px 20px;
      }
      .privacy-contact-section {
      padding: 35px 25px;
      }
      .privacy-contact-title {
      font-size: 1.8rem;
      margin-bottom: 20px;
      }
      .privacy-contact-info {
      font-size: 1.1rem;
      }
      }
      @media screen and (max-width: 480px) {
      .privacy-policy-container {
      padding: 20px 15px;
      }
      .privacy-hero-section {
      padding: 25px 20px;
      border-radius: 15px;
      }
      .privacy-main-title {
      font-size: 2rem;
      }
      .privacy-section {
      padding: 25px 20px;
      }
      .privacy-section-title {
      font-size: 1.4rem;
      padding-left: 15px;
      }
      .privacy-text-content,
      .privacy-subsection-title {
      margin-left: 5px;
      }
      .privacy-highlight-box {
      margin: 20px 5px;
      padding: 20px 15px;
      }
      }
      a.c1 {color: #2d2d2d;}