* {
      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;
      }
      .teaching-methods-hero {
      background: linear-gradient(135deg, #c5bcb1 0%, #e6e2df 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      }
      .teaching-methods-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('./pictures/eCDAlFW.jpg') center/cover;
      opacity: 0.15;
      z-index: 1;
      }
      .hero-content-main {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .hero-main-title {
      font-size: 3.2rem;
      color: #2c2c2c;
      margin-bottom: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      }
      .hero-subtitle-text {
      font-size: 1.3rem;
      color: #555;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      }
      .research-foundation-section {
      padding: 100px 0;
      background: #fff;
      position: relative;
      }
      .research-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      }
      .research-content-block {
      padding-right: 40px;
      }
      .research-section-title {
      font-size: 2.8rem;
      color: #2c2c2c;
      margin-bottom: 32px;
      font-weight: 600;
      line-height: 1.2;
      }
      .research-description {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.7;
      margin-bottom: 28px;
      }
      .evidence-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
      }
      .evidence-point {
      background: #f8f7f6;
      padding: 28px;
      border-radius: 12px;
      border-left: 4px solid #b0957b;
      }
      .evidence-stat {
      font-size: 2.4rem;
      color: #b0957b;
      font-weight: 700;
      margin-bottom: 8px;
      display: block;
      }
      .evidence-label {
      font-size: 0.95rem;
      color: #555;
      font-weight: 500;
      }
      .research-visual-area {
      position: relative;
      height: 500px;
      border-radius: 16px;
      overflow: hidden;
      background: url('./pictures/NudHeXhrq.jpg') center/cover;
      }
      .visual-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(176, 149, 123, 0.2), rgba(197, 188, 177, 0.3));
      }
      .methodology-showcase {
      background: linear-gradient(180deg, #f9f8f7 0%, #fff 100%);
      padding: 120px 0;
      position: relative;
      }
      .methodology-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .methodology-header {
      text-align: center;
      margin-bottom: 80px;
      }
      .methodology-title {
      font-size: 2.6rem;
      color: #2c2c2c;
      margin-bottom: 20px;
      font-weight: 600;
      }
      .methodology-intro {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
      }
      .methods-timeline {
      position: relative;
      padding-left: 80px;
      }
      .timeline-connector {
      position: absolute;
      left: 30px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #b0957b, #c5bcb1);
      }
      .timeline-method {
      position: relative;
      margin-bottom: 60px;
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      }
      .timeline-marker {
      position: absolute;
      left: -65px;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: #b0957b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.2rem;
      z-index: 5;
      }
      .method-title {
      font-size: 1.8rem;
      color: #2c2c2c;
      margin-bottom: 16px;
      font-weight: 600;
      }
      .method-description {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      margin-bottom: 24px;
      }
      .validation-tags {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      }
      .validation-tag {
      background: #e6e2df;
      color: #555;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
      }
      .outcomes-section {
      background: #2c2c2c;
      padding: 100px 0;
      position: relative;
      }
      .outcomes-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('./pictures/ZRbGDsQzWU.jpg') center/cover;
      opacity: 0.1;
      }
      .outcomes-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
      }
      .outcomes-title {
      font-size: 2.4rem;
      color: #fff;
      margin-bottom: 32px;
      font-weight: 600;
      }
      .outcomes-description {
      font-size: 1.1rem;
      color: #e6e2df;
      line-height: 1.6;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      }
      .instructor-profile {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      background: rgba(255, 255, 255, 0.05);
      padding: 40px;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      margin-bottom: 40px;
      }
      .instructor-image {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: url('./pictures/AuZnDRcaq.jpg') center/cover;
      border: 3px solid #b0957b;
      }
      .instructor-details {
      text-align: left;
      }
      .instructor-name {
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 4px;
      font-weight: 600;
      }
      .instructor-credentials {
      font-size: 1rem;
      color: #c5bcb1;
      }
      .outcomes-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 50px;
      }
      .metric-item {
      text-align: center;
      }
      .metric-number {
      font-size: 2.8rem;
      color: #b0957b;
      font-weight: 700;
      display: block;
      margin-bottom: 8px;
      }
      .metric-label {
      font-size: 1rem;
      color: #e6e2df;
      font-weight: 500;
      }
      @media (max-width: 768px) {
      .hero-main-title {
      font-size: 2.4rem;
      }
      .hero-subtitle-text {
      font-size: 1.1rem;
      }
      .research-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      }
      .research-content-block {
      padding-right: 0;
      }
      .research-visual-area {
      height: 300px;
      }
      .evidence-grid {
      grid-template-columns: 1fr;
      }
      .methods-timeline {
      padding-left: 0;
      }
      .timeline-connector {
      display: none;
      }
      .timeline-marker {
      position: static;
      transform: none;
      margin: 0 auto 20px auto;
      }
      .instructor-profile {
      flex-direction: column;
      text-align: center;
      }
      .instructor-details {
      text-align: center;
      }
      .outcomes-metrics {
      grid-template-columns: 1fr;
      gap: 30px;
      }
      }
      a.c1 {color: #2d2d2d;}