      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #f8f9fa;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 20px 0;
      box-shadow: 0 2px 10px rgba(159, 154, 191, 0.15);
      }
      .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      gap: 30px;
      }
      .logo-container {
      flex-shrink: 0;
      z-index: 10;
      position: relative;
      }
      .logo {
      height: 45px;
      width: auto;
      display: block;
      }
      nav {
      flex-grow: 1;
      display: flex;
      justify-content: flex-end;
      z-index: 5;
      }
      .nav-list {
      display: flex;
      list-style: none;
      gap: clamp(15px, 3vw, 35px);
      align-items: center;
      flex-wrap: wrap;
      }
      .nav-list a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      font-size: clamp(14px, 2.5vw, 16px);
      padding: 10px 15px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      white-space: nowrap;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      min-height: 44px;
      display: flex;
      align-items: center;
      }
      .nav-list a:hover, .nav-list a:focus {
      background-color: rgba(255, 255, 255, 0.15);
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
      }
      footer {
      background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
      color: #ffffff;
      padding: 50px 0 30px;
      margin-top: 80px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      }
      .footer-section h3 {
      color: #C0BBD7;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 600;
      }
      .footer-section p, .footer-section a {
      color: #e0e0e0;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover, .footer-section a:focus {
      color: #C0BBD7;
      outline: 2px solid #C0BBD7;
      outline-offset: 2px;
      padding: 5px;
      border-radius: 4px;
      }
      .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 15px;
      }
      .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 30px;
      text-align: center;
      color: #b0b0b0;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-popup {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ffffff;
      border: 2px solid #9F9ABF;
      border-radius: 12px;
      padding: 25px;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
      }
      .cookie-popup.show {
      display: block;
      }
      .cookie-popup h4 {
      color: #9F9ABF;
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
      }
      .cookie-popup p {
      color: #2c2c2c;
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 1.5;
      }
      .cookie-buttons {
      display: flex;
      gap: 12px;
      flex-direction: column;
      }
      .cookie-btn {
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      }
      .cookie-accept {
      background-color: #9F9ABF;
      color: white;
      }
      .cookie-accept:hover, .cookie-accept:focus {
      background-color: #8A84A8;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-reject {
      background-color: #e9ecef;
      color: #2c2c2c;
      border: 1px solid #ced4da;
      }
      .cookie-reject:hover, .cookie-reject:focus {
      background-color: #dee2e6;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-learn {
      background: none;
      color: #9F9ABF;
      text-decoration: underline;
      padding: 8px;
      font-size: 13px;
      }
      .cookie-learn:hover, .cookie-learn:focus {
      color: #8A84A8;
      outline: 2px solid #8A84A8;
      outline-offset: 2px;
      text-decoration: none;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      }
      nav {
      justify-content: center;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: 85%;
      max-width: none;
      padding: 30px;
      }
      .cookie-popup h4 {
      font-size: 20px;
      }
      .cookie-popup p {
      font-size: 18px;
      line-height: 1.6;
      }
      .cookie-btn {
      padding: 15px 25px;
      font-size: 20px;
      min-height: 50px;
      }
      .cookie-buttons {
      gap: 15px;
      }
      .cookie-learn {
      font-size: 16px;
      padding: 12px;
      }
      }
      @media (max-width: 480px) {
      .container {
      padding: 0 15px;
      }
      .nav-list {
      flex-direction: column;
      gap: 10px;
      }
      .nav-list a {
      padding: 12px 20px;
      width: 100%;
      text-align: center;
      }
      }
      .cookie-policy-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      background: linear-gradient(135deg, #f8f7fc 0%, #ffffff 100%);
      min-height: 100vh;
      }
      .policy-header {
      text-align: center;
      margin-bottom: 50px;
      padding: 40px 30px;
      background: linear-gradient(45deg, #9F9ABF, #C0BBD7);
      border-radius: 20px;
      color: white;
      box-shadow: 0 10px 30px rgba(159, 154, 191, 0.3);
      }
      .policy-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0 0 15px 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      }
      .policy-subtitle {
      font-size: 1.2rem;
      margin: 0;
      opacity: 0.9;
      font-weight: 300;
      }
      .rejection-section {
      background: #fff;
      border: 3px solid #DFDBEC;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 40px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(223, 219, 236, 0.4);
      }
      .cookie-status-display {
      background: linear-gradient(90deg, #C0BBD7, #DFDBEC);
      padding: 15px 25px;
      border-radius: 25px;
      margin-bottom: 20px;
      color: #333;
      font-weight: 600;
      font-size: 1.1rem;
      }
      .reject-cookies-btn {
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      color: white;
      border: none;
      padding: 15px 35px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(159, 154, 191, 0.4);
      z-index: 10;
      position: relative;
      }
      .reject-cookies-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(159, 154, 191, 0.6);
      }
      .policy-content-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      }
      .content-section {
      background: white;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      border-left: 5px solid #9F9ABF;
      }
      .section-heading {
      color: #9F9ABF;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 0 25px 0;
      padding-bottom: 10px;
      border-bottom: 2px solid #DFDBEC;
      }
      .section-text {
      color: #444;
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 20px 0;
      }
      .technology-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 30px 0;
      }
      .tech-card {
      background: linear-gradient(135deg, #DFDBEC 0%, #f0effa 100%);
      padding: 25px;
      border-radius: 12px;
      border: 2px solid #C0BBD7;
      transition: transform 0.3s ease;
      }
      .tech-card:hover {
      transform: translateY(-5px);
      }
      .tech-card-title {
      color: #9F9ABF;
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0 0 15px 0;
      }
      .tech-card-description {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      }
      .essential-info-box {
      background: linear-gradient(90deg, #9F9ABF, #C0BBD7);
      color: white;
      padding: 25px;
      border-radius: 12px;
      margin: 25px 0;
      box-shadow: 0 5px 15px rgba(159, 154, 191, 0.3);
      }
      .essential-heading {
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0 0 15px 0;
      }
      .essential-text {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.95;
      }
      .data-list {
      background: #f8f7fc;
      padding: 25px;
      border-radius: 10px;
      margin: 20px 0;
      }
      .list-item {
      display: flex;
      align-items: flex-start;
      margin: 15px 0;
      padding: 10px 0;
      border-bottom: 1px solid #DFDBEC;
      }
      .list-marker {
      background: #9F9ABF;
      color: white;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.9rem;
      margin-right: 15px;
      flex-shrink: 0;
      }
      .list-content {
      color: #444;
      font-size: 1.05rem;
      line-height: 1.6;
      }
      .contact-info-section {
      background: linear-gradient(45deg, #DFDBEC, #ffffff);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      margin-top: 40px;
      border: 2px solid #C0BBD7;
      }
      .contact-heading {
      color: #9F9ABF;
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 20px 0;
      }
      .contact-details {
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      margin: 10px 0;
      }
      @media (max-width: 768px) {
      .cookie-policy-container {
      padding: 20px 15px;
      }
      .policy-header {
      padding: 25px 20px;
      margin-bottom: 30px;
      }
      .policy-title {
      font-size: 2rem;
      }
      .content-section {
      padding: 25px 20px;
      }
      .section-heading {
      font-size: 1.5rem;
      }
      .technology-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      }
      .tech-card {
      padding: 20px;
      }
      .rejection-section {
      padding: 25px 20px;
      }
      }
      @media (max-width: 480px) {
      .policy-title {
      font-size: 1.8rem;
      }
      .policy-subtitle {
      font-size: 1rem;
      }
      .content-section {
      padding: 20px 15px;
      }
      .section-heading {
      font-size: 1.3rem;
      }
      .section-text {
      font-size: 1rem;
      }
      }