      * {
      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;
      }
      }
      .privacy-policy-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
      background: linear-gradient(135deg, #f8f7fc 0%, #ffffff 100%);
      box-sizing: border-box;
      }
      .privacy-header-section {
      text-align: center;
      margin-bottom: 50px;
      padding: 40px 30px;
      background: linear-gradient(120deg, #9F9ABF 0%, #C0BBD7 100%);
      border-radius: 16px;
      color: white;
      position: relative;
      overflow: hidden;
      }
      .privacy-header-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float-header 6s ease-in-out infinite;
      }
      @keyframes float-header {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
      }
      .privacy-main-title {
      font-size: 2.8em;
      font-weight: 700;
      margin: 0 0 20px 0;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      letter-spacing: -0.5px;
      }
      .privacy-subtitle {
      font-size: 1.2em;
      font-weight: 300;
      margin: 0;
      opacity: 0.95;
      line-height: 1.6;
      }
      .privacy-content-wrapper {
      background: white;
      border-radius: 20px;
      padding: 50px 45px;
      box-shadow: 0 10px 40px rgba(159, 154, 191, 0.08);
      border: 1px solid #DFDBEC;
      position: relative;
      }
      .privacy-content-wrapper::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #9F9ABF 0%, #C0BBD7 50%, #DFDBEC 100%);
      border-radius: 0 0 20px 20px;
      }
      .privacy-section-block {
      margin-bottom: 45px;
      padding-bottom: 35px;
      border-bottom: 1px solid rgba(223, 219, 236, 0.4);
      position: relative;
      }
      .privacy-section-block:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
      }
      .privacy-section-title {
      font-size: 1.8em;
      font-weight: 600;
      color: #2c2c54;
      margin: 0 0 25px 0;
      line-height: 1.3;
      position: relative;
      padding-left: 25px;
      }
      .privacy-section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 35px;
      background: linear-gradient(180deg, #9F9ABF 0%, #C0BBD7 100%);
      border-radius: 2px;
      }
      .privacy-text-content {
      font-size: 1.05em;
      line-height: 1.75;
      color: #444466;
      margin: 0 0 20px 0;
      text-align: justify;
      }
      .privacy-text-content:last-child {
      margin-bottom: 0;
      }
      .privacy-highlight-box {
      background: linear-gradient(135deg, rgba(223, 219, 236, 0.3) 0%, rgba(192, 187, 215, 0.15) 100%);
      border-left: 5px solid #9F9ABF;
      padding: 25px 30px;
      margin: 25px 0;
      border-radius: 0 12px 12px 0;
      position: relative;
      }
      .privacy-highlight-box::before {
      content: '!';
      position: absolute;
      left: -15px;
      top: 20px;
      width: 25px;
      height: 25px;
      background: #9F9ABF;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 14px;
      }
      .privacy-list-container {
      margin: 20px 0;
      }
      .privacy-custom-list {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .privacy-list-item {
      position: relative;
      padding: 12px 0 12px 35px;
      font-size: 1.05em;
      line-height: 1.6;
      color: #444466;
      border-bottom: 1px dashed rgba(223, 219, 236, 0.6);
      }
      .privacy-list-item:last-child {
      border-bottom: none;
      }
      .privacy-list-item::before {
      content: '→';
      position: absolute;
      left: 0;
      top: 12px;
      color: #9F9ABF;
      font-weight: bold;
      font-size: 1.2em;
      }
      .privacy-contact-section {
      background: linear-gradient(135deg, rgba(159, 154, 191, 0.05) 0%, rgba(223, 219, 236, 0.1) 100%);
      border-radius: 16px;
      padding: 35px;
      margin-top: 40px;
      text-align: center;
      border: 2px solid rgba(159, 154, 191, 0.1);
      position: relative;
      overflow: hidden;
      }
      .privacy-contact-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(159, 154, 191, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      }
      .privacy-contact-title {
      font-size: 1.6em;
      font-weight: 600;
      color: #2c2c54;
      margin: 0 0 20px 0;
      }
      .privacy-contact-info {
      font-size: 1.1em;
      color: #666688;
      line-height: 1.6;
      margin: 0;
      }
      .privacy-contact-email {
      color: #9F9ABF;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
      }
      .privacy-contact-email:hover {
      border-bottom-color: #9F9ABF;
      }
      .privacy-effective-date {
      text-align: center;
      font-style: italic;
      color: #888899;
      font-size: 0.95em;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(223, 219, 236, 0.4);
      }
      @media (max-width: 768px) {
      .privacy-policy-container {
      padding: 30px 20px;
      }
      .privacy-main-title {
      font-size: 2.2em;
      }
      .privacy-subtitle {
      font-size: 1.1em;
      }
      .privacy-content-wrapper {
      padding: 30px 25px;
      border-radius: 15px;
      }
      .privacy-section-title {
      font-size: 1.5em;
      margin-bottom: 20px;
      }
      .privacy-text-content {
      font-size: 1em;
      text-align: left;
      }
      .privacy-highlight-box {
      padding: 20px 25px;
      margin: 20px 0;
      }
      .privacy-contact-section {
      padding: 25px 20px;
      }
      .privacy-contact-title {
      font-size: 1.4em;
      }
      }
      @media (max-width: 480px) {
      .privacy-policy-container {
      padding: 20px 15px;
      }
      .privacy-header-section {
      padding: 30px 20px;
      }
      .privacy-main-title {
      font-size: 1.9em;
      }
      .privacy-content-wrapper {
      padding: 25px 20px;
      }
      .privacy-section-title {
      font-size: 1.3em;
      padding-left: 20px;
      }
      .privacy-list-item {
      padding-left: 30px;
      }
      }