* {
      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;
      }
      .learning-pathway-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
      }
      .hero-pathway-section {
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      }
      .hero-pathway-content {
      position: relative;
      z-index: 5;
      }
      .hero-pathway-title {
      font-size: 3.2rem;
      color: #2c2c2c;
      margin-bottom: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
      }
      .hero-pathway-subtitle {
      font-size: 1.4rem;
      color: #555;
      margin-bottom: 36px;
      line-height: 1.6;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
      }
      .pathway-overview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-top: 60px;
      }
      .pathway-stat-card {
      background: rgba(255, 255, 255, 0.8);
      padding: 36px 24px;
      border-radius: 16px;
      text-align: center;
      border: 2px solid #b0957b;
      transition: all 0.3s ease;
      }
      .pathway-stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(176, 149, 123, 0.25);
      }
      .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #b0957b;
      display: block;
      margin-bottom: 12px;
      }
      .stat-label {
      font-size: 1.1rem;
      color: #444;
      font-weight: 600;
      }
      .curriculum-modules-section {
      background: #f8f6f4;
      padding: 100px 0;
      position: relative;
      }
      .modules-section-header {
      text-align: center;
      margin-bottom: 80px;
      }
      .modules-title {
      font-size: 2.8rem;
      color: #2c2c2c;
      margin-bottom: 20px;
      font-weight: 700;
      }
      .modules-description {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
      }
      .modules-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      }
      .timeline-connector {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #b0957b, #c5bcb1);
      transform: translateX(-50%);
      z-index: 1;
      }
      .module-timeline-item {
      position: relative;
      margin-bottom: 60px;
      display: flex;
      align-items: center;
      min-height: 200px;
      }
      .module-timeline-item:nth-child(odd) {
      flex-direction: row;
      }
      .module-timeline-item:nth-child(even) {
      flex-direction: row-reverse;
      }
      .module-content-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(176, 149, 123, 0.15);
      width: 400px;
      position: relative;
      border: 3px solid #e6e2df;
      transition: all 0.3s ease;
      }
      .module-timeline-item:nth-child(odd) .module-content-card {
      margin-right: 80px;
      }
      .module-timeline-item:nth-child(even) .module-content-card {
      margin-left: 80px;
      }
      .module-content-card:hover {
      border-color: #b0957b;
      transform: scale(1.02);
      box-shadow: 0 12px 48px rgba(176, 149, 123, 0.25);
      }
      .module-marker {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: #b0957b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.4rem;
      z-index: 10;
      border: 6px solid #f8f6f4;
      }
      .module-number {
      font-size: 0.9rem;
      color: #b0957b;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 12px;
      }
      .module-name {
      font-size: 1.8rem;
      color: #2c2c2c;
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.3;
      }
      .module-details {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 1rem;
      }
      .module-skills-list {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .module-skills-list li {
      background: #f0ede9;
      padding: 8px 16px;
      border-radius: 20px;
      display: inline-block;
      margin: 4px 8px 4px 0;
      font-size: 0.9rem;
      color: #555;
      font-weight: 500;
      }
      .assessment-methods-section {
      background: linear-gradient(45deg, #b0957b 0%, #c5bcb1 50%, #e6e2df 100%);
      padding: 100px 0;
      color: white;
      position: relative;
      }
      .assessment-section-overlay {
      background: rgba(44, 44, 44, 0.7);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      }
      .assessment-content-wrapper {
      position: relative;
      z-index: 5;
      text-align: center;
      }
      .assessment-title {
      font-size: 2.6rem;
      margin-bottom: 24px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      }
      .assessment-intro {
      font-size: 1.3rem;
      margin-bottom: 60px;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
      }
      .assessment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
      }
      .assessment-method-card {
      background: rgba(255, 255, 255, 0.95);
      color: #2c2c2c;
      padding: 50px 36px;
      border-radius: 24px;
      text-align: left;
      position: relative;
      border: 3px solid transparent;
      transition: all 0.3s ease;
      overflow: hidden;
      }
      .assessment-method-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #b0957b, #c5bcb1);
      }
      .assessment-method-card:hover {
      border-color: #b0957b;
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.2);
      }
      .method-icon-placeholder {
      width: 70px;
      height: 70px;
      background: #b0957b;
      border-radius: 50%;
      margin-bottom: 24px;
      position: relative;
      }
      .method-icon-placeholder::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      border: 4px solid white;
      border-radius: 4px;
      }
      .method-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2c2c2c;
      margin-bottom: 16px;
      }
      .method-description {
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      }
      .method-frequency {
      font-size: 0.9rem;
      color: #b0957b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      }
      .enrollment-cta-button {
      display: inline-block;
      background: #b0957b;
      color: white;
      padding: 18px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      margin-top: 40px;
      border: none;
      cursor: pointer;
      text-shadow: none;
      }
      .enrollment-cta-button:hover {
      background: #9a8169;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(176, 149, 123, 0.4);
      color: white;
      text-decoration: none;
      }
      @media (max-width: 768px) {
      .learning-pathway-container {
      padding: 0 16px;
      }
      .hero-pathway-title {
      font-size: 2.4rem;
      }
      .hero-pathway-subtitle {
      font-size: 1.2rem;
      }
      .pathway-overview-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      }
      .modules-timeline {
      max-width: 100%;
      }
      .timeline-connector {
      display: none;
      }
      .module-timeline-item {
      flex-direction: column !important;
      margin-bottom: 40px;
      min-height: auto;
      }
      .module-content-card {
      width: 100%;
      margin: 0 !important;
      padding: 30px 24px;
      }
      .module-marker {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin-bottom: 20px;
      border: 4px solid #f8f6f4;
      }
      .assessment-methods-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      }
      .assessment-method-card {
      padding: 40px 24px;
      }
      .modules-title,
      .assessment-title {
      font-size: 2.2rem;
      }
      }
      @media (max-width: 480px) {
      .hero-pathway-title {
      font-size: 2rem;
      }
      .stat-number {
      font-size: 2.4rem;
      }
      .pathway-stat-card {
      padding: 28px 20px;
      }
      .modules-title,
      .assessment-title {
      font-size: 1.9rem;
      }
      .module-name {
      font-size: 1.5rem;
      }
      }