* {
      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;
      }
      .hero-section-main {
      position: relative;
      min-height: 100vh;
      background-image: linear-gradient(rgba(176, 149, 123, 0.8), rgba(197, 188, 177, 0.6)), url('/banner.png');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      }
      .hero-content-wrapper {
      max-width: 800px;
      width: 100%;
      padding: 0 30px;
      text-align: center;
      color: white;
      }
      .main-hero-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      line-height: 1.2;
      }
      .hero-subtitle-text {
      font-size: 1.4rem;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
      line-height: 1.5;
      }
      .hero-cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      }
      .primary-cta-button {
      background: #b0957b;
      color: white;
      padding: 16px 32px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(176, 149, 123, 0.3);
      }
      .primary-cta-button:hover {
      background: #9a8069;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(176, 149, 123, 0.4);
      }
      .secondary-cta-button {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 14px 30px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      }
      .secondary-cta-button:hover {
      background: white;
      color: #b0957b;
      transform: translateY(-2px);
      }
      .process-section-unique {
      padding: 100px 0;
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 100%);
      position: relative;
      overflow: hidden;
      }
      .process-section-unique::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: white;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0 80%);
      }
      .process-container-custom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      }
      .process-header-block {
      text-align: center;
      margin-bottom: 80px;
      }
      .process-main-title {
      font-size: 2.8rem;
      color: #5d4e3a;
      margin-bottom: 20px;
      }
      .process-intro-text {
      font-size: 1.2rem;
      color: #7a6b58;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      }
      .process-steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
      }
      .process-step-card {
      background: white;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(176, 149, 123, 0.15);
      position: relative;
      transition: transform 0.3s ease;
      }
      .process-step-card:hover {
      transform: translateY(-10px);
      }
      .step-number-circle {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #b0957b, #9a8069);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 25px;
      }
      .step-title-text {
      font-size: 1.4rem;
      color: #5d4e3a;
      margin-bottom: 15px;
      font-weight: 600;
      }
      .step-description-text {
      color: #7a6b58;
      line-height: 1.6;
      }
      .program-overview-section {
      padding: 120px 0;
      background: white;
      position: relative;
      }
      .program-split-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      }
      .program-content-area {
      padding-right: 40px;
      }
      .program-section-title {
      font-size: 2.6rem;
      color: #5d4e3a;
      margin-bottom: 30px;
      line-height: 1.3;
      }
      .program-description-blocks p {
      color: #7a6b58;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 25px;
      }
      .program-features-list {
      list-style: none;
      padding: 0;
      margin: 40px 0;
      }
      .program-features-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #7a6b58;
      font-size: 1.1rem;
      }
      .program-features-list li::before {
      content: '';
      background: #b0957b;
      color: white;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-weight: bold;
      flex-shrink: 0;
      }
      .program-visual-area {
      position: relative;
      }
      .program-image-container {
      width: 100%;
      height: 500px;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      }
      .program-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(176, 149, 123, 0.3), rgba(197, 188, 177, 0.2));
      border-radius: 20px;
      }
      .metrics-dashboard-section {
      padding: 100px 0;
      background: linear-gradient(45deg, #5d4e3a, #7a6b58);
      color: white;
      position: relative;
      overflow: hidden;
      }
      .metrics-decorative-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      }
      .metrics-decorative-shapes::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border: 2px solid white;
      border-radius: 50%;
      transform: rotate(45deg);
      }
      .metrics-decorative-shapes::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -15%;
      width: 400px;
      height: 400px;
      border: 3px solid white;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      }
      .metrics-content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      position: relative;
      z-index: 2;
      }
      .metrics-header-content {
      text-align: center;
      margin-bottom: 70px;
      }
      .metrics-section-title {
      font-size: 2.8rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      }
      .metrics-intro-paragraph {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      line-height: 1.6;
      }
      .metrics-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      }
      .metric-stat-card {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 40px 20px;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
      }
      .metric-stat-card:hover {
      transform: translateY(-8px);
      }
      .metric-number-display {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #e6e2df, #c5bcb1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      }
      .metric-label-text {
      font-size: 1.1rem;
      opacity: 0.9;
      font-weight: 500;
      }
      .testimonial-carousel-section {
      padding: 120px 0;
      background: white;
      position: relative;
      }
      .testimonial-container-main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 30px;
      }
      .testimonial-header-area {
      text-align: center;
      margin-bottom: 80px;
      }
      .testimonial-section-title {
      font-size: 2.8rem;
      color: #5d4e3a;
      margin-bottom: 20px;
      }
      .testimonial-subtitle-text {
      font-size: 1.2rem;
      color: #7a6b58;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      }
      .testimonial-cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      }
      .testimonial-card-item {
      background: linear-gradient(135deg, #e6e2df, #c5bcb1);
      padding: 50px 40px;
      border-radius: 24px;
      position: relative;
      box-shadow: 0 15px 40px rgba(176, 149, 123, 0.2);
      transition: transform 0.3s ease;
      }
      .testimonial-card-item:hover {
      transform: translateY(-5px);
      }
      .testimonial-quote-mark {
      position: absolute;
      top: 20px;
      left: 30px;
      font-size: 4rem;
      color: #b0957b;
      opacity: 0.3;
      font-family: serif;
      }
      .testimonial-text-content {
      color: #5d4e3a;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
      font-style: italic;
      }
      .testimonial-author-section {
      display: flex;
      align-items: center;
      gap: 20px;
      }
      .testimonial-author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 3px solid #b0957b;
      }
      .testimonial-author-info h4 {
      color: #5d4e3a;
      margin: 0 0 5px 0;
      font-size: 1.1rem;
      font-weight: 600;
      }
      .testimonial-author-info p {
      color: #7a6b58;
      margin: 0;
      font-size: 0.95rem;
      }
      @media (max-width: 768px) {
      .main-hero-title {
      font-size: 2.5rem;
      }
      .hero-subtitle-text {
      font-size: 1.2rem;
      }
      .hero-cta-buttons {
      flex-direction: column;
      align-items: center;
      }
      .primary-cta-button,
      .secondary-cta-button {
      width: 100%;
      max-width: 280px;
      text-align: center;
      }
      .process-main-title,
      .program-section-title,
      .metrics-section-title,
      .testimonial-section-title {
      font-size: 2.2rem;
      }
      .program-split-layout {
      grid-template-columns: 1fr;
      gap: 50px;
      }
      .program-content-area {
      padding-right: 0;
      }
      .program-image-container {
      height: 300px;
      }
      .process-steps-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      }
      .metrics-stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      }
      .testimonial-cards-container {
      grid-template-columns: 1fr;
      }
      .testimonial-card-item {
      padding: 40px 30px;
      }
      }
      @media (max-width: 480px) {
      .hero-content-wrapper,
      .process-container-custom,
      .program-split-layout,
      .metrics-content-wrapper,
      .testimonial-container-main {
      padding: 0 20px;
      }
      .metrics-stats-grid {
      grid-template-columns: 1fr;
      }
      .metric-number-display {
      font-size: 2.8rem;
      }
      }