      :root {
        --primary-color: #b393ad;
        --secondary-color: #d3b6d0;
        --tertiary-color: #f3e6f1;
        --text-dark: #2c3e50;
        --text-light: #ecf0f1;
        --shadow-subtle: 0 2px 10px rgba(179, 147, 173, 0.15);
        --shadow-medium: 0 4px 20px rgba(179, 147, 173, 0.2);
        --gradient-primary: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          var(--secondary-color) 100%
        );
        --gradient-accent: linear-gradient(
          45deg,
          var(--secondary-color) 0%,
          var(--tertiary-color) 100%
        );
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        overflow-x: hidden;
      }
      .has-background-black,
      .has-background-black-bis,
      .has-background-black-ter {
        background: var(--gradient-primary) !important;
      }
      .has-text-white {
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.3) !important;
      }
      header {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(243, 230, 241, 0.9) 100%
        );
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(179, 147, 173, 0.1);
        position: relative;
        z-index: 1000;
        min-height: 80px;
        display: flex;
        align-items: center;
        box-shadow: var(--shadow-subtle);
      }
      .header-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
      }
      .logo-container {
        flex-shrink: 0;
        z-index: 1001;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(179, 147, 173, 0.3));
        transition: all 0.3s ease;
      }
      .logo-container:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(179, 147, 173, 0.4));
      }
      .nav-container {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-left: 2rem;
      }
      .main-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .nav-item {
        display: inline-block;
        position: relative;
        margin: 0.25rem;
      }
      .nav-item a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: clamp(0.875rem, 2vw, 1rem);
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(179, 147, 173, 0.2);
        backdrop-filter: blur(5px);
        white-space: nowrap;
        display: block;
      }
      .nav-item a:hover {
        background: var(--gradient-primary);
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
      }
      .nav-item a.active {
        background: var(--primary-color);
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
      }
      footer {
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #9c7b96 100%
        );
        color: white;
        padding: 3rem 0 1.5rem;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 20px,
          rgba(255, 255, 255, 0.05) 20px,
          rgba(255, 255, 255, 0.05) 40px
        );
        pointer-events: none;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 2;
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }
      .footer-section h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
      }
      .footer-section p,
      .footer-section a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        margin-bottom: 0.5rem;
        display: block;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
      }
      .footer-section a:hover {
        color: var(--tertiary-color);
        transform: translateX(5px);
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
      }
      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1rem;
      }
      .footer-links a {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
        margin-bottom: 0;
      }
      .footer-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .contact-info span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .contact-info span::before {
        content: "→";
        color: var(--tertiary-color);
        font-weight: bold;
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-medium);
        max-width: 350px;
        border: 1px solid rgba(179, 147, 173, 0.3);
        z-index: 10000;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.5s ease;
      }
      .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
      }
      .cookie-consent p {
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-size: 0.9rem;
        line-height: 1.5;
      }
      .cookie-buttons {
        display: flex;
        gap: 0.75rem;
        justify-content: flex-end;
      }
      .cookie-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.875rem;
      }
      .cookie-btn.accept {
        background: var(--primary-color);
        color: white;
      }
      .cookie-btn.accept:hover {
        background: #a084a0;
        transform: translateY(-1px);
      }
      .cookie-btn.decline {
        background: #e9ecef;
        color: var(--text-dark);
      }
      .cookie-btn.decline:hover {
        background: #dee2e6;
      }
      @media (max-width: 1024px) {
        .nav-container {
          margin-left: 1rem;
        }
        .main-nav {
          gap: 0.25rem;
        }
        .nav-item a {
          padding: 0.5rem 0.75rem;
          font-size: 0.875rem;
        }
      }
      @media (max-width: 768px) {
        .header-container {
          padding: 0 1rem;
          flex-direction: row;
          align-items: center;
          min-height: 70px;
        }
        .logo-container {
          margin-right: 1rem;
        }
        .nav-container {
          margin-left: 0;
          flex-grow: 1;
        }
        .main-nav {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 0.5rem;
          width: 100%;
        }
        .nav-item {
          margin: 0;
        }
        .nav-item a {
          padding: 0.5rem;
          font-size: 0.8rem;
          text-align: center;
        }
        .footer-content {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }
        .footer-links {
          flex-direction: column;
          gap: 0.75rem;
        }
        .cookie-consent {
          bottom: 10px;
          right: 10px;
          left: 10px;
          max-width: none;
        }
      }
      @media (max-width: 480px) {
        .header-container {
          flex-direction: column;
          padding: 0.75rem;
          gap: 0.75rem;
        }
        .logo-container {
          margin-right: 0;
        }
        .nav-container {
          width: 100%;
        }
        .main-nav {
          grid-template-columns: 1fr;
        }
        .nav-item a {
          padding: 0.75rem;
          font-size: 0.9rem;
        }
      }
      .finances-hero {
        background: linear-gradient(135deg, #f3e6f1 0%, #d3b6d0 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      .finances-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(179, 147, 173, 0.1) 0%,
          transparent 70%
        );
        transform: rotate(15deg);
      }
      .hero-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }
      .hero-main-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 30px;
        text-align: center;
        line-height: 1.2;
      }
      .hero-subtitle {
        font-size: 1.4rem;
        color: #34495e;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }
      .journey-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 60px 0;
        position: relative;
      }
      .journey-step {
        flex: 1;
        text-align: center;
        position: relative;
        padding: 0 15px;
      }
      .step-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, #b393ad, #d3b6d0);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        font-weight: bold;
        box-shadow: 0 8px 20px rgba(179, 147, 173, 0.3);
        transform: translateY(0);
        transition: all 0.3s ease;
      }
      .step-circle:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(179, 147, 173, 0.4);
      }
      .step-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
      }
      .step-description {
        font-size: 0.95rem;
        color: #7f8c8d;
        line-height: 1.5;
      }
      .journey-connector {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          #b393ad 20%,
          #b393ad 80%,
          transparent 100%
        );
        z-index: 1;
      }
      .analytics-showcase {
        background: white;
        padding: 80px 0;
        position: relative;
      }
      .showcase-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .showcase-content {
        padding: 40px;
      }
      .showcase-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 30px;
        line-height: 1.3;
      }
      .showcase-description {
        font-size: 1.1rem;
        color: #34495e;
        line-height: 1.7;
        margin-bottom: 35px;
      }
      .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 15px;
        background: #f3e6f1;
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      .feature-item:hover {
        background: #d3b6d0;
        transform: translateX(5px);
      }
      .feature-icon {
        width: 20px;
        height: 20px;
        background: #b393ad;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
      }
      .feature-text {
        font-size: 1rem;
        color: #2c3e50;
        font-weight: 500;
      }
      .showcase-image {
        background-image: url("./documentation_images/fophVrOMA.jpg");
        background-size: cover;
        background-position: center;
        height: 500px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }
      .showcase-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(179, 147, 173, 0.2),
          rgba(211, 182, 208, 0.1)
        );
      }
      .learning-path {
        background: linear-gradient(45deg, #f3e6f1, #ffffff);
        padding: 80px 0;
        position: relative;
      }
      .path-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .path-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .path-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
      }
      .path-subtitle {
        font-size: 1.2rem;
        color: #34495e;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .path-timeline {
        position: relative;
        padding: 40px 0;
      }
      .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #b393ad, #d3b6d0);
        transform: translateX(-50%);
      }
      .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 60px;
        position: relative;
      }
      .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 60px;
        text-align: right;
      }
      .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        text-align: left;
      }
      .timeline-content {
        flex: 1;
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        position: relative;
      }
      .timeline-marker {
        position: absolute;
        left: 50%;
        width: 20px;
        height: 20px;
        background: #b393ad;
        border-radius: 50%;
        transform: translateX(-50%);
        border: 4px solid white;
        z-index: 2;
      }
      .timeline-step {
        font-size: 1.3rem;
        font-weight: 600;
        color: #b393ad;
        margin-bottom: 10px;
      }
      .timeline-description {
        font-size: 1rem;
        color: #34495e;
        line-height: 1.6;
      }
      .skills-tracker {
        background: white;
        padding: 80px 0;
      }
      .tracker-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .tracker-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .tracker-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
      }
      .tracker-subtitle {
        font-size: 1.2rem;
        color: #34495e;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      .skill-card {
        background: linear-gradient(135deg, #f3e6f1, #ffffff);
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }
      .skill-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(179, 147, 173, 0.2);
        border-color: #b393ad;
      }
      .skill-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #b393ad, #d3b6d0);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .skill-name {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
      }
      .skill-description {
        font-size: 1rem;
        color: #34495e;
        line-height: 1.6;
        margin-bottom: 20px;
      }
      .skill-progress {
        width: 100%;
        height: 8px;
        background: #ecf0f1;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 10px;
      }
      .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #b393ad, #d3b6d0);
        border-radius: 4px;
        transition: width 0.3s ease;
      }
      .progress-text {
        font-size: 0.9rem;
        color: #b393ad;
        font-weight: 500;
      }
      .personalized-outcomes {
        background: linear-gradient(135deg, #b393ad, #d3b6d0);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      .outcomes-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }
      .outcomes-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .outcomes-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
      }
      .outcomes-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .outcomes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
      }
      .outcome-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
      }
      .outcome-card:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px);
      }
      .outcome-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
      }
      .outcome-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
      }
      .outcome-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
      }
      .community-features {
        background: white;
        padding: 80px 0;
      }
      .community-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .community-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .community-content {
        padding: 40px;
      }
      .community-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 30px;
        line-height: 1.3;
      }
      .community-description {
        font-size: 1.1rem;
        color: #34495e;
        line-height: 1.7;
        margin-bottom: 40px;
      }
      .community-features-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .community-feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        padding: 20px;
        background: #f3e6f1;
        border-radius: 10px;
        transition: all 0.3s ease;
      }
      .community-feature-item:hover {
        background: #d3b6d0;
        transform: translateX(5px);
      }
      .community-icon {
        width: 40px;
        height: 40px;
        background: #b393ad;
        border-radius: 8px;
        margin-right: 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
      }
      .community-feature-content {
        flex: 1;
      }
      .community-feature-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
      }
      .community-feature-text {
        font-size: 0.95rem;
        color: #34495e;
        line-height: 1.5;
      }
      .community-image {
        background-image: url("./documentation_images/WOMGKzgS.jpg");
        background-size: cover;
        background-position: center;
        height: 600px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }
      .community-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(179, 147, 173, 0.1),
          rgba(211, 182, 208, 0.05)
        );
      }
      .cta-section {
        background: linear-gradient(135deg, #2c3e50, #34495e);
        padding: 80px 0;
        text-align: center;
      }
      .cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.3;
      }
      .cta-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.6;
      }
      .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .cta-primary {
        background: linear-gradient(45deg, #b393ad, #d3b6d0);
        color: white;
        padding: 18px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
      }
      .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(179, 147, 173, 0.4);
        color: white;
        text-decoration: none;
      }
      .cta-secondary {
        background: transparent;
        color: white;
        padding: 18px 35px;
        border: 2px solid white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-block;
      }
      .cta-secondary:hover {
        background: white;
        color: #2c3e50;
        text-decoration: none;
      }
      .testimonial-section {
        background: #f3e6f1;
        padding: 80px 0;
      }
      .testimonial-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
      }
      .testimonial-content {
        background: white;
        padding: 50px 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
      }
      .testimonial-quote {
        font-size: 1.3rem;
        color: #2c3e50;
        line-height: 1.6;
        margin-bottom: 30px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
      }
      .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-image: url("./documentation_images/aDGpR.jpg");
        background-size: cover;
        background-position: center;
        border: 3px solid #b393ad;
      }
      .author-info {
        text-align: left;
      }
      .author-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
      }
      .author-title {
        font-size: 1rem;
        color: #b393ad;
      }
      @media (max-width: 768px) {
        .hero-main-title {
          font-size: 2.5rem;
        }
        .hero-subtitle {
          font-size: 1.2rem;
        }
        .journey-steps {
          flex-direction: column;
          gap: 30px;
        }
        .journey-connector {
          display: none;
        }
        .showcase-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .showcase-image {
          height: 300px;
        }
        .timeline-line {
          left: 30px;
        }
        .timeline-item {
          flex-direction: column;
          align-items: flex-start;
        }
        .timeline-marker {
          left: 30px;
        }
        .timeline-content {
          margin-left: 60px !important;
          margin-right: 0 !important;
          text-align: left !important;
        }
        .skills-grid {
          grid-template-columns: 1fr;
        }
        .outcomes-grid {
          grid-template-columns: 1fr;
        }
        .community-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .community-image {
          height: 300px;
        }
        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        .cta-primary,
        .cta-secondary {
          width: 100%;
          max-width: 300px;
        }
        .testimonial-author {
          flex-direction: column;
          text-align: center;
        }
        .author-info {
          text-align: center;
        }
      }