* {
      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;
      }
      .success-page-wrapper {
      width: 100%;
      margin: 0 auto;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      }
      .success-hero-section {
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 50%, #b0957b 100%);
      padding: 80px 20px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      }
      .success-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 20%, rgba(176, 149, 123, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(197, 188, 177, 0.2) 0%, transparent 50%);
      pointer-events: none;
      }
      .success-content-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      }
      .success-checkmark {
      width: 120px;
      height: 120px;
      margin: 0 auto 30px;
      background: #b0957b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: success-pulse 2s ease-in-out infinite alternate;
      }
      @keyframes success-pulse {
      0% { box-shadow: 0 0 0 0 rgba(176, 149, 123, 0.4); }
      100% { box-shadow: 0 0 0 25px rgba(176, 149, 123, 0); }
      }
      .success-checkmark::after {
      content: '';
      color: white;
      font-size: 48px;
      font-weight: bold;
      }
      .success-main-title {
      font-size: 3.2rem;
      font-weight: 700;
      color: #2c2c2c;
      margin: 0 0 20px;
      letter-spacing: -1px;
      }
      .success-subtitle {
      font-size: 1.4rem;
      color: #5a5a5a;
      margin: 0 0 40px;
      font-weight: 300;
      }
      .success-details-block {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 50px 40px;
      margin: 60px auto;
      max-width: 900px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .success-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 30px 0;
      }
      .success-info-card {
      background: linear-gradient(145deg, #f8f6f4, #e6e2df);
      padding: 30px 25px;
      border-radius: 15px;
      text-align: center;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      }
      .success-info-card:hover {
      border-color: #b0957b;
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(176, 149, 123, 0.15);
      }
      .success-info-icon {
      width: 60px;
      height: 60px;
      background: #b0957b;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      }
      .success-card-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #2c2c2c;
      margin: 0 0 10px;
      }
      .success-card-text {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      }
      .success-next-steps {
      background: #f8f6f4;
      padding: 40px 30px;
      border-radius: 15px;
      margin: 40px 0;
      border-left: 5px solid #b0957b;
      }
      .success-steps-title {
      font-size: 1.5rem;
      color: #2c2c2c;
      margin: 0 0 25px;
      font-weight: 600;
      }
      .success-steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .success-step-item {
      display: flex;
      align-items: flex-start;
      margin: 0 0 20px;
      padding: 0;
      }
      .success-step-number {
      background: #b0957b;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.9rem;
      margin-right: 15px;
      flex-shrink: 0;
      margin-top: 2px;
      }
      .success-step-text {
      color: #555;
      font-size: 1rem;
      line-height: 1.5;
      margin: 0;
      }
      .success-buttons-section {
      text-align: center;
      margin: 50px 0 30px;
      }
      .success-button-primary {
      background: linear-gradient(135deg, #b0957b 0%, #9d8568 100%);
      color: white;
      padding: 16px 32px;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin: 0 15px 15px;
      transition: all 0.3s ease;
      cursor: pointer;
      min-width: 180px;
      }
      .success-button-primary:hover {
      background: linear-gradient(135deg, #9d8568 0%, #8a7456 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(176, 149, 123, 0.3);
      text-decoration: none;
      color: white;
      }
      .success-button-secondary {
      background: transparent;
      color: #b0957b;
      padding: 16px 32px;
      border: 2px solid #b0957b;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin: 0 15px 15px;
      transition: all 0.3s ease;
      cursor: pointer;
      min-width: 180px;
      }
      .success-button-secondary:hover {
      background: #b0957b;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(176, 149, 123, 0.2);
      text-decoration: none;
      }
      .success-contact-info {
      background: linear-gradient(145deg, #e6e2df, #d4cfc8);
      padding: 35px 30px;
      border-radius: 15px;
      margin: 40px 0;
      text-align: center;
      }
      .success-contact-title {
      font-size: 1.3rem;
      color: #2c2c2c;
      margin: 0 0 20px;
      font-weight: 600;
      }
      .success-contact-details {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 25px;
      margin-top: 20px;
      }
      .success-contact-item {
      color: #555;
      font-size: 0.95rem;
      }
      .success-contact-label {
      font-weight: 600;
      color: #2c2c2c;
      display: block;
      margin-bottom: 5px;
      }
      @media (max-width: 768px) {
      .success-hero-section {
      padding: 60px 15px 40px;
      }
      .success-main-title {
      font-size: 2.4rem;
      }
      .success-subtitle {
      font-size: 1.2rem;
      }
      .success-details-block {
      padding: 35px 25px;
      margin: 40px 15px;
      }
      .success-info-grid {
      grid-template-columns: 1fr;
      gap: 25px;
      }
      .success-contact-details {
      grid-template-columns: 1fr;
      gap: 20px;
      }
      .success-button-primary,
      .success-button-secondary {
      display: block;
      margin: 0 auto 15px;
      width: 100%;
      max-width: 280px;
      }
      .success-checkmark {
      width: 100px;
      height: 100px;
      }
      .success-checkmark::after {
      font-size: 40px;
      }
      }
      @media (max-width: 480px) {
      .success-main-title {
      font-size: 2rem;
      }
      .success-details-block {
      padding: 25px 20px;
      margin: 30px 10px;
      }
      .success-info-card {
      padding: 25px 20px;
      }
      .success-next-steps {
      padding: 30px 20px;
      }
      }
      </style>
      <style type="text/css">
      a.c1 {color: #2d2d2d;}