      * {
      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;
      }
      }
      .success-page-wrapper {
      min-height: 100vh;
      background: linear-gradient(135deg, #DFDBEC 0%, #C0BBD7 50%, #9F9ABF 100%);
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      }
      .success-container {
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(159, 154, 191, 0.3);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      }
      .success-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 8px;
      background: linear-gradient(90deg, #9F9ABF, #C0BBD7, #DFDBEC, #C0BBD7, #9F9ABF);
      background-size: 200% 100%;
      animation: success-shimmer 3s ease-in-out infinite;
      }
      @keyframes success-shimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      }
      .success-icon-wrapper {
      width: 120px;
      height: 120px;
      margin: 0 auto 30px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      }
      .success-checkmark {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transform: scale(0);
      animation: success-pop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
      }
      @keyframes success-pop {
      0% { transform: scale(0) rotate(-180deg); }
      100% { transform: scale(1) rotate(0deg); }
      }
      .success-checkmark::after {
      content: '';
      color: white;
      font-size: 40px;
      font-weight: bold;
      transform: scale(0);
      animation: check-appear 0.3s ease-out 0.8s forwards;
      }
      @keyframes check-appear {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
      }
      .success-title {
      font-size: 2.8rem;
      color: #9F9ABF;
      margin-bottom: 20px;
      font-weight: 700;
      letter-spacing: -1px;
      opacity: 0;
      animation: fade-slide-up 0.6s ease-out 0.5s forwards;
      }
      @keyframes fade-slide-up {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
      }
      .success-message {
      font-size: 1.2rem;
      color: #4a4a4a;
      line-height: 1.6;
      margin-bottom: 35px;
      opacity: 0;
      animation: fade-slide-up 0.6s ease-out 0.8s forwards;
      }
      .success-details {
      background: #f8f7fb;
      border-radius: 15px;
      padding: 30px;
      margin: 35px 0;
      border-left: 5px solid #9F9ABF;
      opacity: 0;
      animation: fade-slide-up 0.6s ease-out 1.1s forwards;
      }
      .detail-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      text-align: left;
      }
      .detail-item:last-child {
      margin-bottom: 0;
      }
      .detail-icon {
      width: 24px;
      height: 24px;
      background: #C0BBD7;
      border-radius: 50%;
      margin-right: 15px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      }
      .detail-text {
      color: #5a5a5a;
      line-height: 1.5;
      font-size: 1rem;
      }
      .detail-text strong {
      color: #9F9ABF;
      font-weight: 600;
      }
      .success-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fade-slide-up 0.6s ease-out 1.4s forwards;
      }
      .action-button {
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
      min-width: 160px;
      }
      .btn-primary {
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      color: white;
      box-shadow: 0 8px 20px rgba(159, 154, 191, 0.3);
      }
      .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(159, 154, 191, 0.4);
      color: white;
      text-decoration: none;
      }
      .btn-secondary {
      background: transparent;
      color: #9F9ABF;
      border: 2px solid #9F9ABF;
      }
      .btn-secondary:hover {
      background: #9F9ABF;
      color: white;
      transform: translateY(-2px);
      text-decoration: none;
      }
      .additional-info {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid #e0e0e0;
      opacity: 0;
      animation: fade-slide-up 0.6s ease-out 1.7s forwards;
      }
      .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 25px;
      }
      .info-card {
      background: white;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 25px 20px;
      text-align: center;
      transition: all 0.3s ease;
      }
      .info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(159, 154, 191, 0.15);
      border-color: #C0BBD7;
      }
      .info-card-title {
      color: #9F9ABF;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1.1rem;
      }
      .info-card-text {
      color: #6a6a6a;
      font-size: 0.95rem;
      line-height: 1.4;
      }
      .contact-highlight {
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      color: white;
      padding: 25px;
      border-radius: 15px;
      margin-top: 30px;
      }
      .contact-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
      }
      .contact-details {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      font-size: 0.95rem;
      }
      .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      }
      @media (max-width: 768px) {
      .success-page-wrapper {
      padding: 20px 15px;
      min-height: 100vh;
      }
      .success-container {
      padding: 40px 25px;
      border-radius: 15px;
      }
      .success-title {
      font-size: 2.2rem;
      }
      .success-message {
      font-size: 1.1rem;
      }
      .success-details {
      padding: 25px 20px;
      margin: 25px 0;
      }
      .success-actions {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      }
      .action-button {
      width: 100%;
      max-width: 280px;
      }
      .info-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      }
      .contact-details {
      flex-direction: column;
      gap: 15px;
      text-align: center;
      }
      }
      @media (max-width: 480px) {
      .success-container {
      padding: 30px 20px;
      }
      .success-title {
      font-size: 1.8rem;
      }
      .success-icon-wrapper {
      width: 100px;
      height: 100px;
      margin-bottom: 25px;
      }
      .success-checkmark {
      width: 70px;
      height: 70px;
      }
      .success-checkmark::after {
      font-size: 32px;
      }
      }