* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

main {
    width: 100%;
    height: 100vh;
}

.navigation {
    position: absolute;
    top: 32px;
    left: 81px;
    right: 81px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.max-width-section-title {
    max-width: 653px;
}

.nav-logo img {
    height: 38px;
    width: auto;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger img {
    width: 24px;
    height: 16px;
}

.close-menu {
    display: none;
}

.nav-items {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-item {
    color: white;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 16px;
    letter-spacing: 0.42px;
    word-wrap: break-word;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 9px;
    text-decoration: none;
}

.nav-item:hover {
    opacity: 1;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Dropdown styles */
.has-dropdown {
    position: relative;
    padding-bottom: 9px;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.has-dropdown:hover::after {
    width: 100%;
}

.nav-item-text {
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 16px;
    letter-spacing: 0.42px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background: white;
    min-width: 250px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 12px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #031241;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(3, 18, 65, 0.05);
}

.header-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.header-container picture {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.header-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(3, 18, 65, 0.50) 0%, rgba(3, 18, 65, 0.50) 100%);
}

.shadow-overlay {
    width: 100%;
    height: 334px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-subtitle {
    color: white;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 1px;
}

.hero-title {
    width: 100%;
    color: white;
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    max-width: 870px;
    color: white;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.hero-button {
    margin-top: 84px;
    padding: 12px 16px;
    background: #2F64FF;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 255px;
    height: 48px;
}

.hero-button:hover {
    background: #2552d4;
    transform: translateY(-2px);
}

/* Content Sections */
.intro-section {
    margin-top: 111px;
    margin-bottom: 166px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: black;
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin: 0;
}

.section-title-who {
    text-align: start;
    max-width: 600px;
}

.intro-description {
    max-width: 870px;
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.intro-description strong {
    font-weight: 700;
}

.partner-logos {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-logos img {
    max-height: 60px;
    width: auto;
}

.skills-section,
.key-outcomes-section,
.mark-spot-section {
    margin-top: 111px;
    margin-bottom: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    overflow: hidden;
    max-width: 100vw;
}

.section-subtitle {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 1px;
}

.skills-description {
    max-width: 690px;
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

/* Key Outcomes Carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}

.outcome-card {
    flex: 0 0 calc(33.333% - 8px);
    background: #F4F4FF;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 32px;
}

.outcome-image {
    width: 100%;
    height: 204px;
    object-fit: cover;
    display: block;
}

.outcome-title {
    color: black;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin: 24px 32px 16px;
}

.outcome-description {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0 32px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #F4F4FF;
    border-color: #2F64FF;
}

.carousel-arrow img {
    width: 8px;
    height: 14px;
}

/* Modules Section */
.modules-section {
    margin: 80px auto 120px;
    max-width: 1200px;
    padding: 0 20px;
}

.module-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    border: none;
    padding: 0;
}

.module-tab {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: #2F64FF;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.module-tab:hover {
    background: #F4F4FF;
}

.module-tab.active {
    background: #2F64FF;
    color: white;
}

.module-content {
    background: #F4F4FF;
    border-radius: 8px;
    padding: 48px;
    display: none;
}

.module-content.active {
    display: block;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 20px;
}

.module-title {
    color: black;
    font-size: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 35px;
    margin: 0;
    flex: 1;
}

.module-footer {
    display: none;
}

.module-badge {
    padding: 4px 12px;
    border-radius: 4px;
    color: #2F64FF;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.module-description {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 32px 0;
    max-width: 564px;
}

.module-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2F64FF;
    border-radius: 4px;
    padding: 6px 10px;
    color: white;
    font-size: 11px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    gap: 6px;
    flex-shrink: 0;
    width: 114px;
    height: 22px;
}

.item-badge svg {
    flex-shrink: 0;
}

.item-title {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 22px;
    max-width: 651px;
}

/* Who Is It For Section */
.who-is-it-for-section {
    margin: 120px 80px;
    padding: 20px;
}

.who-content-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Left Main Column (3/4 width): Contains 2 rows */
.who-left-main {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Each row in left main */
.who-row {
    display: flex;
    gap: 24px;
    flex: 1;
}

/* Text content wrapper card */
.who-card-text-wrapper {
    justify-content: flex-start;
}

/* Text content (inside card) */
.who-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-description {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    max-width: 467px;
}

/* Cards in rows (3/4 width or 1/4 width) */
.who-row .who-card:first-child:not(:only-child) {
    flex: 3;
}

.who-row .who-card:last-child:not(:only-child) {
    flex: 1;
}

/* Cards */
.who-card {
    background: #F4F4FF;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.who-card-first {
    background: #FFF;
}

/* Right tall card (1/3 width, full height) */
.who-card-tall {
    flex: 1;
}

.who-star {
    width: 34px;
    height: 34px;
    background: #FFF;
    border-radius: 4.47px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-card-text {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.who-card-text strong {
    font-weight: 700;
}

/* Mark Your Spot Section */
.mark-spot-content {
    min-width: 934px;
    margin: 0 auto;
    border-top: 1px solid #D9D8D1;
    border-bottom: 1px solid #D9D8D1;
    padding: 32px 40px;
    display: flex;
    gap: 83px;
    align-items: center;
}

.mark-spot-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 22px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-amount {
    color: black;
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.price-suffix {
    color: black;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 22px;
}

.mark-spot-col-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy-button {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    background: #2F64FF;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.buy-button:hover {
    background: #2552d4;
    transform: translateY(-2px);
}

.date-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.date-info img {
    width: 20px;
    height: 20px;
}

.date-text {
    color: #838383;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 22px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .navigation {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .nav-logo img {
        height: 30px;
    }

    .hamburger {
        display: block;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 102;
    }

    .close-menu h2 {
        font-size: 40px;
        font-weight: 300;
        color: #031241;
        margin: 0;
        line-height: 1;
        font-family: 'Raleway', sans-serif;
    }

    .nav-items {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 40px 40px;
        gap: 0;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-items.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        color: #031241;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-weight: 600;
        letter-spacing: 0.3px;
        display: block;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        opacity: 0.7;
        color: #031241;
    }

    .close-menu+.nav-item,
    .close-menu+.has-dropdown {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Mobile dropdown styles */
    .has-dropdown {
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .has-dropdown::after {
        display: none;
    }

    .has-dropdown .nav-item-text {
        display: block;
        width: 100%;
        padding: 18px 0;
        padding-right: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        color: #031241;
    }

    .has-dropdown .nav-item-text::before {
        content: '+';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s ease;
        color: #031241;
    }

    .has-dropdown.active .nav-item-text::before {
        transform: translateY(-50%) rotate(45deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(3, 18, 65, 0.02);
        min-width: 100%;
        padding: 0;
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        display: block;
    }

    .dropdown-item {
        padding: 14px 20px 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        color: #031241;
    }

    .dropdown-item:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .header-image {
        object-position: center;
    }

    .shadow-overlay {
        height: 200px;
    }

    .who-content-wrapper {
        flex-direction: column;
    }

    .who-left-main {
        flex-direction: column;
    }

    .who-row {
        flex-direction: column;
    }

    #supporters {
        flex-direction: column;
    }

    #supporters .logos {
        flex-direction: column;
    }

    .mark-spot-content {
        min-width: auto;
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .navigation {
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
    }

    .nav-logo img {
        height: 26px;
    }

    .nav-items {
        width: 90%;
        padding: 70px 30px 30px;
    }

    .nav-item {
        font-size: 15px;
        padding: 16px 0;
    }

    .shadow-overlay {
        height: 150px;
    }

    .hero-content {
        width: 85%;
        gap: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-button {
        font-size: 14px;
        padding: 10px 14px;
        width: auto;
        min-width: 200px;
    }

    .intro-section {
        margin-top: 60px;
        margin-bottom: 80px;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-who {
        text-align: center;
    }

    .intro-description {
        font-size: 15px;
        line-height: 20px;
    }

    .partner-logos {
        gap: 24px;
        margin-top: 24px;
    }

    .partner-logos img {
        max-height: 40px;
    }

    .skills-section,
    .key-outcomes-section,
    .mark-spot-section {
        margin-top: 60px;
        margin-bottom: 60px;
        gap: 24px;
    }

    .who-is-it-for-section {
        margin: 60px auto 80px;
    }

    .who-text-content {
        text-align: center;
    }

    .who-card {
        padding: 24px;
        gap: 12px;
    }

    .who-card-text {
        font-size: 15px;
        line-height: 20px;
    }

    .mark-spot-content {
        flex-direction: column;
        padding: 24px 20px;
        align-items: flex-start;
        min-width: auto;
        width: 100%;
        gap: 32px;
    }

    .mark-spot-col-right {
        width: 100%;
        align-items: center;
    }

    .price-amount {
        font-size: 36px;
    }

    .price-suffix {
        font-size: 18px;
    }

    .buy-button {
        font-size: 14px;
    }

    .date-info {
        justify-content: center;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .skills-description {
        font-size: 15px;
        line-height: 20px;
    }

    .modules-section {
        margin: 60px auto 80px;
    }

    .module-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .module-tabs::-webkit-scrollbar {
        display: none;
    }

    .module-content {
        padding: 24px;
    }

    .module-header {
        margin-bottom: 12px;
    }

    .module-header .module-badge {
        display: none;
    }

    .module-title {
        font-size: 24px;
        line-height: 28px;
    }

    .module-footer {
        display: flex;
        justify-content: flex-end;
        margin-top: 24px;
        padding-top: 20px;
    }

    .module-description {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .item-title {
        font-size: 15px;
        line-height: 20px;
    }

    .module-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-container {
        gap: 0;
        padding: 0;
        max-width: 100vw;
        overflow: hidden;
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        padding: 0;
    }

    .carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        transition: none;
        width: max-content;
        padding: 0 20px;
    }

    .outcome-card {
        flex: 0 0 327px;
        min-width: 327px;
        max-width: 327px;
    }

    .outcome-card:last-child {
        margin-right: 20px;
    }

    .outcome-title {
        font-size: 18px;
        margin: 20px 24px 12px;
    }

    .outcome-description {
        font-size: 15px;
        line-height: 20px;
        margin: 0 24px;
    }
}

@media screen and (max-width: 640px) {
    .carousel-track {
        padding: 0 16px;
    }

    .outcome-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .outcome-card:last-child {
        margin-right: 16px;
    }

    .outcome-title {
        font-size: 16px;
        margin: 16px 20px 12px;
    }

    .outcome-description {
        font-size: 14px;
        line-height: 18px;
        margin: 0 20px;
    }
}