     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
        min-height: 100vh;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      header {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        min-height: 85px;
        position: relative;
        box-shadow: 0 4px 20px rgba(124, 171, 138, 0.15);
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23fff" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%23fff" opacity="0.1"/></svg>')
          repeat;
        animation: float 20s infinite linear;
      }
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }
      .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 85px;
        position: relative;
        z-index: 10;
      }
      .logo-container {
        display: flex;
        align-items: center;
        z-index: 15;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
      }
      .logo-container:hover img {
        transform: scale(1.05);
      }
      .nav-container {
        display: flex;
        align-items: center;
        z-index: 12;
      }
      nav ul {
        display: flex;
        list-style: none;
        gap: clamp(15px, 3vw, 35px);
        margin: 0;
        padding: 0;
      }
      nav ul li {
        position: relative;
      }
      nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(14px, 1.5vw, 16px);
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
      }
      nav ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
      }
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          gap: 15px;
          padding: 15px 0;
          min-height: auto;
        }
        nav ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 12px;
        }
        nav ul li a {
          padding: 10px 14px;
          font-size: 14px;
        }
      }
      footer {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: #ecf0f1;
        padding: 60px 0 30px;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2, #d4e5d7);
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-section h3 {
        color: #7cab8a;
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-section h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
        border-radius: 2px;
      }
      .footer-section p,
      .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s ease;
      }
      .footer-section a:hover {
        color: #7cab8a;
        text-shadow: 0 0 8px rgba(124, 171, 138, 0.3);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-links a {
        padding: 5px 0;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
      }
      .footer-links a:hover {
        border-bottom-color: #7cab8a;
        padding-left: 10px;
      }
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #34495e;
        color: #95a5a6;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .contact-item::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #7cab8a;
        border-radius: 50%;
        flex-shrink: 0;
      }
      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        footer {
          padding: 40px 0 20px;
        }
      }
      .cookie-popup {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        color: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
        animation: slideUp 0.5s ease-out;
      }
      @keyframes slideUp {
        from {
          transform: translateY(100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .cookie-popup.show {
        display: block;
      }
      .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
      }
      .cookie-text {
        flex: 1;
        font-size: 14px;
        line-height: 1.5;
      }
      .cookie-actions {
        display: flex;
        gap: 12px;
      }
      .cookie-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        font-weight: 500;
      }
      .cookie-accept {
        background: white;
        color: #7cab8a;
      }
      .cookie-accept:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
      }
      .cookie-decline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .cookie-decline:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      @media (max-width: 640px) {
        .cookie-content {
          flex-direction: column;
          text-align: center;
        }
        .cookie-popup {
          left: 10px;
          right: 10px;
        }
      }
      .learning-pathway-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
      }
      .pathway-hero {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        padding: 80px 0;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
      }
      .pathway-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 10px,
          rgba(255, 255, 255, 0.1) 10px,
          rgba(255, 255, 255, 0.1) 20px
        );
        animation: heroPattern 20s linear infinite;
      }
      @keyframes heroPattern {
        0% {
          transform: translateX(-20px) translateY(-20px);
        }
        100% {
          transform: translateX(20px) translateY(20px);
        }
      }
      .pathway-hero-content {
        position: relative;
        z-index: 2;
      }
      .pathway-main-title {
        font-size: 3.5rem;
        color: white;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .pathway-subtitle {
        font-size: 1.4rem;
        color: white;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }
      .pathway-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
      }
      .stat-item {
        text-align: center;
        color: white;
      }
      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
      }
      .stat-label {
        font-size: 1rem;
        opacity: 0.9;
      }
      .curriculum-pathway {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 60px;
        margin-bottom: 80px;
        align-items: start;
      }
      .pathway-sidebar {
        position: sticky;
        top: 20px;
      }
      .pathway-navigation {
        background: #d4e5d7;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 30px;
      }
      .nav-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
      }
      .nav-items {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .nav-item {
        margin-bottom: 12px;
      }
      .nav-link {
        color: #7cab8a;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 0;
        display: block;
        border-left: 3px solid transparent;
        padding-left: 15px;
        transition: all 0.3s ease;
      }
      .nav-link:hover {
        border-left-color: #7cab8a;
        color: #2c3e50;
        padding-left: 20px;
      }
      .pathway-progress {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }
      .progress-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
      }
      .progress-bar {
        background: #f8f9fa;
        height: 8px;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 10px;
      }
      .progress-fill {
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
        height: 100%;
        width: 0%;
        animation: progressFill 3s ease-out forwards;
      }
      @keyframes progressFill {
        to {
          width: 35%;
        }
      }
      .progress-text {
        font-size: 0.9rem;
        color: #666;
      }
      .pathway-content {
        min-height: 100vh;
      }
      .learning-module {
        background: white;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }
      .learning-module::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2, #d4e5d7);
      }
      .module-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
      }
      .module-icon {
        width: 60px;
        height: 60px;
        background: #d4e5d7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 1.5rem;
        color: #7cab8a;
        font-weight: 700;
      }
      .module-title {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
      }
      .module-duration {
        background: #7cab8a;
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-left: auto;
      }
      .module-description {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 30px;
      }
      .learning-objectives {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 30px;
      }
      .objective-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        border-left: 4px solid #7cab8a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .objective-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }
      .objective-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
      }
      .objective-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
      }
      .objective-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .skill-tag {
        background: #d4e5d7;
        color: #7cab8a;
        padding: 4px 12px;
        border-radius: 16px;
        font-size: 0.85rem;
        font-weight: 500;
      }
      .assessment-methods {
        background: linear-gradient(135deg, #a9cab2 0%, #d4e5d7 100%);
        border-radius: 12px;
        padding: 30px;
        margin-top: 30px;
      }
      .assessment-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
        text-align: center;
      }
      .assessment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
      }
      .assessment-item {
        background: white;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      .assessment-icon {
        width: 40px;
        height: 40px;
        background: #7cab8a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: white;
        font-weight: 700;
      }
      .assessment-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
      }
      .assessment-description {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
      }
      .skill-progression {
        background: #2c3e50;
        color: white;
        padding: 60px 0;
        margin: 80px 0;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
      }
      .skill-progression::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("./article_images/HEw1qeasDF.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.2;
      }
      .skill-progression-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .progression-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: white;
      }
      .skill-tree {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        align-items: center;
      }
      .skill-level {
        text-align: center;
        position: relative;
      }
      .skill-level::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -20px;
        width: 40px;
        height: 2px;
        background: #7cab8a;
        transform: translateY(-50%);
      }
      .skill-level:last-child::after {
        display: none;
      }
      .skill-circle {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #7cab8a, #a9cab2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }
      .skill-level-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: white;
      }
      .skill-level-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
      }
      .instructor-spotlight {
        background: white;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }
      .instructor-grid {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 30px;
        align-items: center;
      }
      .instructor-image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-image: url("./article_images/6XcT.jpg");
        background-size: cover;
        background-position: center;
        border: 4px solid #d4e5d7;
      }
      .instructor-info {
        flex: 1;
      }
      .instructor-name {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
      }
      .instructor-title {
        font-size: 1.1rem;
        color: #7cab8a;
        font-weight: 600;
        margin-bottom: 20px;
      }
      .instructor-bio {
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
      }
      .instructor-credentials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .credential-badge {
        background: #7cab8a;
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
      }
      .enrollment-cta {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        padding: 60px 0;
        text-align: center;
        border-radius: 20px;
        margin-top: 60px;
      }
      .cta-content {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .cta-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
      }
      .cta-description {
        font-size: 1.2rem;
        color: white;
        opacity: 0.95;
        margin-bottom: 30px;
        line-height: 1.6;
      }
      .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .cta-button {
        background: white;
        color: #7cab8a;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid white;
      }
      .cta-button:hover {
        background: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      .cta-button.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
      }
      .cta-button.secondary:hover {
        background: white;
        color: #7cab8a;
      }
      @media (max-width: 768px) {
        .learning-pathway-container {
          padding: 0 15px;
        }
        .pathway-hero {
          padding: 60px 0;
        }
        .pathway-main-title {
          font-size: 2.5rem;
        }
        .pathway-subtitle {
          font-size: 1.2rem;
        }
        .pathway-stats {
          flex-direction: column;
          gap: 20px;
        }
        .curriculum-pathway {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .pathway-sidebar {
          position: static;
          order: 2;
        }
        .learning-module {
          padding: 25px;
        }
        .module-header {
          flex-direction: column;
          text-align: center;
        }
        .module-icon {
          margin-right: 0;
          margin-bottom: 15px;
        }
        .module-duration {
          margin-left: 0;
          margin-top: 10px;
        }
        .learning-objectives {
          grid-template-columns: 1fr;
        }
        .skill-tree {
          grid-template-columns: 1fr;
        }
        .skill-level::after {
          display: none;
        }
        .instructor-grid {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .instructor-image {
          margin: 0 auto;
        }
        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        .cta-button {
          width: 100%;
          max-width: 280px;
        }
      }