      * {
      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;
      }
      }
      .main-wrapper {
      margin: 0 auto;
      width: 100%;
      max-width: 1200px;
      overflow-x: hidden;
      }
      .hero-section-custom {
      position: relative;
      min-height: 85vh;
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 50%, #DFDBEC 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 30px;
      margin-bottom: 80px;
      background-attachment: fixed;
      }
      .hero-content-wrapper {
      max-width: 800px;
      width: 100%;
      z-index: 2;
      position: relative;
      }
      .hero-title-main {
      font-size: 3.5rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 24px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      line-height: 1.2;
      }
      .hero-subtitle-text {
      font-size: 1.4rem;
      color: #ffffff;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
      line-height: 1.5;
      opacity: 0.95;
      }
      .hero-cta-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      }
      .hero-cta-primary {
      background: #ffffff;
      color: #9F9ABF;
      padding: 16px 32px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      }
      .hero-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      color: #9F9ABF;
      }
      .hero-cta-secondary {
      background: transparent;
      color: #ffffff;
      padding: 16px 32px;
      text-decoration: none;
      border: 2px solid #ffffff;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      }
      .hero-cta-secondary:hover {
      background: #ffffff;
      color: #9F9ABF;
      }
      .process-section-unique {
      padding: 80px 30px;
      background: #f8f8f8;
      margin-bottom: 60px;
      position: relative;
      }
      .process-container-custom {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      }
      .process-header-block {
      text-align: center;
      margin-bottom: 60px;
      }
      .process-main-title {
      font-size: 2.8rem;
      color: #333333;
      margin-bottom: 20px;
      font-weight: 700;
      }
      .process-intro-text {
      font-size: 1.2rem;
      color: #666666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      }
      .process-timeline-wrapper {
      position: relative;
      padding-left: 80px;
      }
      .process-timeline-line {
      position: absolute;
      left: 30px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #9F9ABF, #C0BBD7);
      }
      .process-step-item {
      position: relative;
      margin-bottom: 50px;
      background: #ffffff;
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      }
      .process-step-marker {
      position: absolute;
      left: -65px;
      top: 35px;
      width: 26px;
      height: 26px;
      background: #9F9ABF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.9rem;
      z-index: 3;
      }
      .process-step-title {
      font-size: 1.5rem;
      color: #333333;
      margin-bottom: 15px;
      font-weight: 600;
      }
      .process-step-description {
      color: #666666;
      line-height: 1.6;
      font-size: 1rem;
      }
      .program-showcase-section {
      padding: 70px 30px;
      background: linear-gradient(45deg, #DFDBEC 0%, #ffffff 100%);
      margin-bottom: 60px;
      clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
      padding-top: 90px;
      padding-bottom: 90px;
      }
      .program-content-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      }
      .program-info-block {
      padding-right: 20px;
      }
      .program-section-title {
      font-size: 2.6rem;
      color: #333333;
      margin-bottom: 25px;
      font-weight: 700;
      line-height: 1.3;
      }
      .program-description-text {
      font-size: 1.1rem;
      color: #555555;
      line-height: 1.7;
      margin-bottom: 30px;
      }
      .program-feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 35px 0;
      }
      .program-feature-item {
      padding: 12px 0;
      color: #444444;
      font-size: 1rem;
      position: relative;
      padding-left: 25px;
      }
      .program-feature-item:before {
      content: "";
      position: absolute;
      left: 0;
      color: #9F9ABF;
      font-weight: 700;
      }
      .program-cta-button {
      background: #9F9ABF;
      color: #ffffff;
      padding: 14px 28px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      }
      .program-cta-button:hover {
      background: #8a85a8;
      transform: translateY(-1px);
      }
      .program-visual-block {
      position: relative;
      }
      .program-image-container {
      width: 100%;
      height: 400px;
      background-size: cover;
      background-position: center center;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      }
      .metrics-dashboard-section {
      padding: 75px 30px;
      background: #333333;
      color: #ffffff;
      margin-bottom: 60px;
      position: relative;
      overflow: hidden;
      }
      .metrics-bg-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: linear-gradient(45deg, rgba(159,154,191,0.1) 0%, rgba(192,187,215,0.1) 100%);
      border-radius: 50%;
      transform: translate(50%, -50%);
      }
      .metrics-container-main {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      }
      .metrics-header-section {
      text-align: center;
      margin-bottom: 55px;
      }
      .metrics-title-main {
      font-size: 2.5rem;
      margin-bottom: 18px;
      font-weight: 700;
      }
      .metrics-subtitle-text {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.5;
      }
      .metrics-grid-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      }
      .metric-card-item {
      background: rgba(255,255,255,0.08);
      padding: 40px 25px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.3s ease;
      }
      .metric-card-item:hover {
      transform: translateY(-5px);
      }
      .metric-number-display {
      font-size: 3rem;
      font-weight: 800;
      color: #C0BBD7;
      margin-bottom: 12px;
      display: block;
      }
      .metric-label-text {
      font-size: 1rem;
      opacity: 0.9;
      font-weight: 500;
      }
      .testimonial-carousel-section {
      padding: 80px 30px;
      background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
      margin-bottom: 0;
      }
      .testimonial-main-container {
      max-width: 900px;
      margin: 0 auto;
      }
      .testimonial-section-header {
      text-align: center;
      margin-bottom: 50px;
      }
      .testimonial-title-main {
      font-size: 2.7rem;
      color: #333333;
      margin-bottom: 20px;
      font-weight: 700;
      }
      .testimonial-intro-text {
      font-size: 1.1rem;
      color: #666666;
      line-height: 1.6;
      }
      .testimonial-card-featured {
      background: #ffffff;
      padding: 45px;
      border-radius: 15px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      position: relative;
      margin-bottom: 40px;
      }
      .testimonial-quote-mark {
      position: absolute;
      top: -15px;
      left: 45px;
      font-size: 4rem;
      color: #C0BBD7;
      line-height: 1;
      }
      .testimonial-content-text {
      font-size: 1.2rem;
      line-height: 1.7;
      color: #444444;
      margin-bottom: 30px;
      font-style: italic;
      padding-top: 20px;
      }
      .testimonial-author-info {
      display: flex;
      align-items: center;
      gap: 20px;
      }
      .testimonial-author-image {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background-size: cover;
      background-position: center center;
      border: 3px solid #DFDBEC;
      }
      .testimonial-author-details {
      flex: 1;
      }
      .testimonial-author-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333333;
      margin-bottom: 5px;
      }
      .testimonial-author-title {
      color: #666666;
      font-size: 0.95rem;
      }
      .cta-bottom-section {
      text-align: center;
      margin-top: 45px;
      }
      .cta-final-button {
      background: #9F9ABF;
      color: #ffffff;
      padding: 18px 40px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-block;
      }
      .cta-final-button:hover {
      background: #8a85a8;
      transform: scale(1.05);
      }
      @media (max-width: 768px) {
      .hero-title-main {
      font-size: 2.5rem;
      }
      .hero-subtitle-text {
      font-size: 1.2rem;
      }
      .hero-cta-container {
      flex-direction: column;
      align-items: center;
      }
      .program-content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      }
      .program-section-title {
      font-size: 2.2rem;
      }
      .metrics-grid-layout {
      grid-template-columns: 1fr;
      gap: 25px;
      }
      .process-timeline-wrapper {
      padding-left: 0;
      }
      .process-timeline-line {
      display: none;
      }
      .process-step-marker {
      position: static;
      margin: 0 auto 20px auto;
      }
      .testimonial-card-featured {
      padding: 30px 25px;
      }
      .testimonial-author-info {
      flex-direction: column;
      text-align: center;
      }
      }
      @media (max-width: 480px) {
      .hero-section-custom {
      padding: 40px 20px;
      min-height: 70vh;
      }
      .hero-title-main {
      font-size: 2rem;
      }
      .process-section-unique,
      .program-showcase-section,
      .metrics-dashboard-section,
      .testimonial-carousel-section {
      padding: 50px 20px;
      }
      .program-image-container {
      height: 250px;
      }
      }