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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Apply Banner Section */
.apply-banner {
    background-color: #2d2d2d;
    width: 100%;
    padding: 0rem 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.apply-banner-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0.75rem 0;
}

.header {
    background-color: #ffffff;
    width: 100%;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #636ae8;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    font-weight: 500;
}

a.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-login {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.btn-login:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

.btn-apply {
    background-color: #2c35e0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-apply span {
    margin-left: 0.25rem;
}

.btn-apply:hover {
    background-color: #242cc7;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .apply-banner {
        padding: 0.875rem 1.5rem;
    }
    
    .apply-banner-content {
        font-size: 17px;
        padding: 0.625rem 0;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .btn {
        font-size: 15px;
        padding: 0.5rem 1.25rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .apply-banner {
        padding: 0.75rem 1rem;
    }
    
    .apply-banner-content {
        font-size: 16px;
        padding: 0.625rem 0;
    }
    
    .header-container {
        padding: 1rem;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        font-size: 14px;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .apply-banner {
        padding: 0.625rem 0.75rem;
    }
    
    .apply-banner-content {
        font-size: 15px;
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0.75rem;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        font-size: 13px;
        padding: 0.5rem 0.875rem;
    }
    
    .logo {
        max-height: 35px;
    }
}

/* Hero Section V2 - Innovative Design */
.hero-section-v2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    padding: 2rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: none;
    align-items: center;
    justify-content: center;
}

.hero-v2-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-v2-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 106, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-v2-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-v2-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(99, 106, 232, 0.15);
    border: 1px solid rgba(99, 106, 232, 0.1);
    backdrop-filter: blur(10px);
}

.hero-v2-badge-icon {
    font-size: 18px;
}

.hero-v2-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2c35e0;
    font-weight: 600;
}

.hero-v2-heading {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-v2-heading-line {
    display: block;
    color: #333333;
}

.hero-v2-heading-accent {
    background: linear-gradient(135deg, #2c35e0 0%, #636ae8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-v2-highlight-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(99, 106, 232, 0.12);
    border: 1px solid rgba(99, 106, 232, 0.1);
    width: fit-content;
}

.hero-v2-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-v2-highlight-icon {
    font-size: 24px;
}

.hero-v2-highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2c35e0;
    font-weight: 600;
}

.hero-v2-highlight-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.hero-v2-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.hero-v2-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-v2-primary {
    background: linear-gradient(135deg, #2c35e0 0%, #636ae8 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(44, 53, 224, 0.3);
}

.btn-hero-v2-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 53, 224, 0.4);
}

.btn-hero-v2-secondary {
    background: #ffffff;
    color: #2c35e0;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 2px solid #2c35e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-hero-v2-secondary:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
}

.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 106, 232, 0.1);
}

.hero-v2-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.hero-v2-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c35e0;
    line-height: 1.2;
}

.hero-v2-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
}

.hero-v2-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.hero-v2-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-v2-image-card {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    padding: 1rem;
}

.hero-v2-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.hero-v2-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 106, 232, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-v2-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(99, 106, 232, 0.2);
    border: 1px solid rgba(99, 106, 232, 0.15);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c35e0;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.hero-v2-badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-v2-badge-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: 1.5s;
}

.hero-v2-floating-icon {
    font-size: 18px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Section V2 - Tablet Styles */
@media (max-width: 1024px) {
    .hero-section-v2 {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    
    .hero-v2-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-v2-heading {
        font-size: 48px;
    }
    
    .hero-v2-highlight-box {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-v2-highlight-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
    }
    
    .hero-v2-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-v2-stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
    }
    
    .hero-v2-floating-badge {
        display: none;
    }
    
    .hero-v2-image-section {
        order: -1;
    }
}

/* Hero Section V2 - Mobile Styles */
@media (max-width: 768px) {
    .hero-section-v2 {
        padding: 3rem 1rem;
    }
    
    .hero-v2-container {
        gap: 2.5rem;
    }
    
    .hero-v2-heading {
        font-size: 36px;
    }
    
    .hero-v2-highlight-box {
        padding: 1.25rem 1.5rem;
    }
    
    .hero-v2-highlight-text {
        font-size: 14px;
    }
    
    .hero-v2-description {
        font-size: 16px;
    }
    
    .hero-v2-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-v2-primary,
    .btn-hero-v2-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero-v2-stats {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .hero-v2-stat-value {
        font-size: 24px;
    }
    
    .hero-v2-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section-v2 {
        padding: 2rem 0.75rem;
    }
    
    .hero-v2-heading {
        font-size: 28px;
    }
    
    .hero-v2-badge {
        padding: 0.625rem 1.25rem;
    }
    
    .hero-v2-badge-text {
        font-size: 12px;
    }
    
    .hero-v2-highlight-box {
        padding: 1rem 1.25rem;
    }
    
    .hero-v2-description {
        font-size: 15px;
    }
    
    .hero-v2-stats {
        padding: 1.25rem;
    }
}

/* Hero Section Styles */
.hero-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.hero-heading .text-dark-blue {
    color: #1e40af;
}

.hero-heading .text-bright-blue {
    color: #2c35e0;
    font-weight: 400;
}

.hero-heading .text-dark {
    color: #333333;
}

.hero-heading .text-bold {
    font-weight: 400;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    margin: 0.5rem 0;
}

.hero-highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2c35e0;
    font-weight: 600;
    line-height: 1.4;
}

.hero-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
}

.btn-hero {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    padding: 0.875rem 2rem;
    margin-top: 0.5rem;
    align-self: flex-start;
    border-radius: 6px;
}

.btn-hero:hover {
    background-color: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section - Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-container {
        gap: 3rem;
        max-width: 100%;
    }
    
    .hero-heading {
        font-size: 48px;
    }
    
    .hero-highlight {
        padding: 0.625rem 1.25rem;
    }
    
    .hero-highlight-text {
        font-size: 15px;
    }
    
    .hero-paragraph {
        font-size: 17px;
    }
    
    .btn-hero {
        font-size: 15px;
        padding: 0.75rem 1.75rem;
    }
}

/* Hero Section - Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image-container {
        order: 2;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-highlight {
        padding: 0.625rem 1.25rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-highlight-text {
        font-size: 15px;
        text-align: center;
    }
    
    .hero-paragraph {
        font-size: 16px;
    }
    
    .btn-hero {
        width: 100%;
        font-size: 16px;
        padding: 0.875rem 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-heading {
        font-size: 28px;
    }
    
    .hero-highlight {
        padding: 0.5rem 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-highlight-text {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-paragraph {
        font-size: 15px;
    }
    
    .btn-hero {
        font-size: 15px;
        padding: 0.75rem 1.5rem;
    }
}

/* Why Program Section V2 - Innovative Design */
.why-program-section-v2 {
    background-color: #f8f9fa;
    width: 100%;
    padding: 0px;
    position: relative;
    display: none;
}

.why-program-v2-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.why-program-v2-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.why-program-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-top: 0%;
}

.why-program-v2-tag-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-program-v2-tag-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.why-program-v2-heading {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.why-program-v2-heading-text {
    color: #333333;
}

.why-program-v2-heading-highlight {
    color: #2c35e0;
    font-weight: 600;
}

.why-program-v2-stat {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.why-program-v2-stat-bold {
    font-weight: 700;
    color: #2c35e0;
}

.why-program-v2-conclusion {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

.why-program-v2-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #2d2d2d;
    padding: 80px 0px 30px 60px;
    position: relative;
}

.why-program-v2-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

/* Why Program Section V2 - Tablet Styles */
@media (max-width: 1024px) {
    .why-program-section-v2 {
        padding: 0;
    }
    
    .why-program-v2-container {
        grid-template-columns: 60% 40%;
        gap: 0;
    }
    
    .why-program-v2-content {
        gap: 1.75rem;
        padding: 3rem 2rem;
    }
    
    .why-program-v2-image-container {
        padding: 3rem 1.5rem;
    }
    
    .why-program-v2-heading {
        font-size: 42px;
    }
    
    .why-program-v2-stat {
        font-size: 19px;
    }
    
    .why-program-v2-conclusion {
        font-size: 17px;
    }
}

/* Why Program Section V2 - Mobile Styles */
@media (max-width: 768px) {
    .why-program-section-v2 {
        padding: 0;
    }
    
    .why-program-v2-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .why-program-v2-content {
        order: 1;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .why-program-v2-image-container {
        order: 2;
        padding: 2rem 1rem;
    }
    
    .why-program-v2-tag {
        padding: 0.45rem 0.875rem;
    }
    
    .why-program-v2-tag-icon {
        width: 14px;
        height: 14px;
    }
    
    .why-program-v2-tag-text {
        font-size: 13px;
    }
    
    .why-program-v2-heading {
        font-size: 32px;
    }
    
    .why-program-v2-stat {
        font-size: 18px;
    }
    
    .why-program-v2-conclusion {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-program-section-v2 {
        padding: 0;
    }
    
    .why-program-v2-container {
        gap: 0;
    }
    
    .why-program-v2-content {
        gap: 1.25rem;
        padding: 1.5rem 1rem;
    }
    
    .why-program-v2-image-container {
        padding: 1.5rem 1rem;
    }
    
    .why-program-v2-tag {
        padding: 0.4rem 0.75rem;
    }
    
    .why-program-v2-tag-icon {
        width: 12px;
        height: 12px;
    }
    
    .why-program-v2-tag-text {
        font-size: 12px;
    }
    
    .why-program-v2-heading {
        font-size: 24px;
    }
    
    .why-program-v2-stat {
        font-size: 16px;
    }
    
    .why-program-v2-conclusion {
        font-size: 15px;
    }
}

/* Why This Program Section Styles */
.why-program-section {
    background-color: #f8f9fa;
    width: 100%;
    
}

.program-duration-section {
    background-color: #2c35e0;
}

.program-duration-section .why-program-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.program-duration-section .why-program-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 7.5rem;
}

.why-program-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.why-program-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 7.5rem;
    
}

.why-program-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-top: -21%;
}

.why-program-tag-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.why-program-tag-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
}

.why-program-heading {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.why-program-heading .text-dark-blue {
    color: #2c35e0;
}

.why-program-heading .text-dark {
    color: #333333;
}

.why-program-stat {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.why-program-stat .stat-bold {
    font-weight: 700;
}

.why-program-conclusion {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

.program-duration-enrollment {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    color: #2c35e0;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.program-duration-practices {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #333333;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.program-duration-practices .practices-bold {
    font-size: 40px;
    font-weight: 700;
}

.program-duration-applications {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #333333;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.program-duration-applications strong {
    font-weight: 700;
}

.why-program-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.why-program-image-wrapper {
    width: 100%;
    height: 100%;
}

.why-program-section .why-program-image-wrapper {
    background-color: transparent;
}

.why-program-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-top: -4px;
    padding: 60px 0px 30px 50px;
}

.program-duration-section .why-program-image-container {
    background-color: transparent;
}

.program-duration-section .why-program-image-wrapper {
    background-color: #2c35e0;
}

/* How It Works Section - Tablet Styles */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .how-it-works-container {
        padding: 0 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 40px;
    }
    
    .how-it-works-subtitle {
        font-size: 20px;
    }
    
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-it-works-card {
        padding: 1.75rem 1.25rem;
    }
    
    .how-it-works-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .how-it-works-card-title {
        font-size: 22px;
    }
    
    .how-it-works-card-description {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* How It Works Section - Medium Tablet Styles */
@media (max-width: 900px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .how-it-works-card {
        padding: 1.5rem 1rem;
    }
}

/* How It Works Section - Small Tablet to Mobile Transition */
@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* Program Duration Section - Tablet Styles */
@media (max-width: 1024px) {
    .program-duration-section {
        padding: 3rem 0;
    }
    
    .program-duration-section .why-program-container {
        grid-template-columns: 60% 40%;
        gap: 3rem;
        padding: 0 3rem;
    }
    
    .program-duration-section .why-program-content {
        gap: 1.75rem;
        padding-left: 2rem;
        padding-right: 1.5rem;
    }
    
    .program-duration-heading {
        font-size: 36px;
    }
    
    .program-duration-text {
        font-size: 17px;
    }
    
    .btn-program-duration {
        font-size: 15px;
        padding: 0.875rem 2rem;
    }
}

/* Why This Program Section - Tablet Styles */
@media (max-width: 1024px) {
    .why-program-section {
        padding: 3rem 0;
    }
    
    .why-program-container {
        grid-template-columns: 60% 40%;
        gap: 3rem;
        padding: 0 3rem;
    }
    
    .why-program-content {
        gap: 1.75rem;
        padding-left: 2rem;
        padding-right: 1.5rem;
    }
    
    .why-program-heading {
        font-size: 42px;
    }
    
    .why-program-stat {
        font-size: 19px;
    }
    
    .why-program-conclusion {
        font-size: 17px;
    }
    
    .program-duration-enrollment {
        font-size: 40px;
    }
    
    .program-duration-practices {
        font-size: 28px;
    }
    
    .program-duration-practices .practices-bold {
        font-size: 36px;
    }
    
    .program-duration-applications {
        font-size: 28px;
    }
    
    .program-duration-tag {
        margin-top: -50px;
    }
}

/* How It Works Section - Mobile Styles */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .how-it-works-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .how-it-works-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .how-it-works-title {
        font-size: 28px;
    }
    
    .how-it-works-subtitle {
        font-size: 18px;
    }
    
    .how-it-works-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .how-it-works-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .how-it-works-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .how-it-works-card-title {
        font-size: 22px;
        margin-bottom: 0.75rem;
    }
    
    .how-it-works-card-description {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Program Duration Section - Mobile Styles */
@media (max-width: 768px) {
    .program-duration-section {
        padding: 0;
        margin-top: 0;
    }
    
    .program-duration-section .why-program-container {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .program-duration-section .why-program-content {
        order: 1;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .program-duration-section .why-program-content br {
        display: none;
    }
    
    .program-duration-section .why-program-image-container {
        order: 2;
        padding: 2rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .program-duration-section .why-program-image {
        margin-top: 0;
    }
    
    .program-duration-tag {
        padding: 0.45rem 0.875rem;
        margin-top: 0;
    }
    
    .program-duration-tag-icon {
        width: 14px;
        height: 14px;
    }
    
    .program-duration-tag-text {
        font-size: 13px;
    }
    
    .program-duration-heading {
        font-size: 32px;
    }
    
    .program-duration-text {
        font-size: 16px;
    }
    
    .btn-program-duration {
        font-size: 15px;
        padding: 0.875rem 1.75rem;
    }
}

/* Why This Program Section - Mobile Styles */
@media (max-width: 768px) {
    .why-program-section {
        padding: 2rem 0;
    }
    
    .why-program-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .why-program-content {
        order: 1;
        gap: 1.5rem;
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
    }
    
    .why-program-content br {
        display: none;
    }
    
    .why-program-image-container {
        order: 2;
    }
    
    .why-program-tag {
        padding: 0.45rem 0.875rem;
    }
    
    .why-program-tag-icon {
        width: 14px;
        height: 14px;
    }
    
    .why-program-tag-text {
        font-size: 13px;
    }
    
    .why-program-heading {
        font-size: 32px;
    }
    
    .why-program-stat {
        font-size: 18px;
    }
    
    .why-program-conclusion {
        font-size: 16px;
    }
    
    .program-duration-enrollment {
        font-size: 24px;
        text-align: center;
    }
    
    .program-duration-practices {
        font-size: 22px;
    }
    
    .program-duration-practices .practices-bold {
        font-size: 28px;
    }
    
    .program-duration-applications {
        font-size: 22px;
    }
    
    .program-duration-tag {
        margin-top: -40px;
    }
}

/* FAQ Section - Tablet Styles */
@media (max-width: 1024px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        max-width: 1200px;
        width: 100%;
        padding: 0 3rem;
        box-sizing: border-box;
    }
    
    .faq-title {
        font-size: 48px;
    }
    
    .faq-question-text {
        font-size: 24px;
    }
    
    .faq-answer p {
        font-size: 17px;
    }
    
    /* Contact Form Section - Tablet */
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 0 1.5rem;
    }
    
    .contact-form-content {
        gap: 3rem;
    }
    
    .contact-form-heading {
        font-size: 40px;
    }
    
    .contact-form-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .contact-form-subheading {
        font-size: 22px;
    }
    
    .contact-form-description {
        font-size: 17px;
    }
    
    /* Contact Form Section - Tablet */
    .contact-form-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-form-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    /* Footer Section - Tablet */
    .footer-section {
        padding: 1rem 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo {
        max-width: 180px;
    }
}

/* FAQ Section - Mobile Styles */
@media (max-width: 768px) {
    /* All paragraphs 16px on mobile */
    p {
        font-size: 16px !important;
    }
    
    /* Center align headings and sub-headings on mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
    }
    
    /* Center align Shared Success section on mobile */
    .program-shared-success-heading,
    .program-shared-tagline {
        text-align: center !important;
    }
    
    /* Center align real results testimonial text and author on mobile */
    .real-results-testimonial-text,
    .real-results-testimonial-author {
        text-align: center;
    }
    
    /* Keep points content left-aligned */
    ul, ol, li {
        text-align: left;
    }
    
    /* Center align why program stat and conclusion on mobile */
    .why-program-stat,
    .why-program-conclusion {
        text-align: center;
    }
    
    /* Keep program duration content left-aligned */
    .program-duration-practices,
    .program-duration-applications,
    .program-duration-enrollment {
        text-align: left;
    }
    
    /* Keep form inputs left-aligned */
    input, textarea, select {
        text-align: left;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
        box-sizing: border-box;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 1.25rem 0;
    }
    
    .faq-question-text {
        font-size: 22px;
    }
    
    .contact-form-heading {
        font-size: 36px;
    }
    
    .contact-form-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .faq-answer p {
        font-size: 16px;
    }
    
    /* Contact Form Section - Mobile */
    .contact-form-section {
        padding: 2.5rem 0;
    }
    
    .contact-form-container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-form-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: start;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-left {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-right {
        display: none !important; /* Hidden on mobile */
    }
    
    .contact-form-image-mobile {
        display: flex !important; /* Visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .contact-form-image-mobile .contact-form-image {
        width: 100% !important;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto;
    }
    
    .contact-form-heading {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    
    .contact-form-subheading {
        font-size: 20px;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .contact-form-description {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-embed {
        height: 500px;
        margin-top: 1rem;
        overflow: hidden;
    }
    
    .contact-form-embed iframe {
        overflow: hidden;
    }
    
    .contact-form {
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input {
        font-size: 16px;
        padding: 0.875rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
    }
    
    .form-group-half {
        width: 100%;
        max-width: 100%;
    }
    
    .btn-contact-form {
        font-size: 16px;
        padding: 0.875rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .contact-form-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Footer Section - Mobile */
    .footer-section {
        padding: 2rem 0;
    }
    
    .footer-container {
        display: block !important;
        text-align: center;
        padding: 0;
    }
    
    .footer-left {
        display: block !important;
        width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        display: block !important;
        max-width: 180px;
        margin: 0 auto 1rem auto;
    }
    
    .footer-copyright {
        display: block !important;
        font-size: 13px;
        text-align: center;
        line-height: 1.5;
        margin: 0;
    }
    
    .footer-right {
        display: block !important;
        width: 100%;
        text-align: center;
    }
    
    .footer-follow-text {
        display: block !important;
        text-align: center;
        font-size: 14px;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .footer-social-icons {
        display: block !important;
        text-align: center;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .footer-social-icons .social-icon {
        display: inline-block !important;
        margin: 0 0.375rem;
        vertical-align: top;
        width: 38px !important;
        height: 38px !important;
        flex: none !important;
    }
    
    .social-icon {
        width: 38px !important;
        height: 38px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    /* All paragraphs 14px on mobile */
    p {
        font-size: 14px !important;
    }
    
    /* Center align headings and sub-headings on mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
    }
    
    /* Center align Shared Success section on mobile */
    .program-shared-success-heading,
    .program-shared-tagline {
        text-align: center !important;
    }
    
    /* Center align real results testimonial text on mobile */
    .real-results-testimonial-text {
        text-align: center;
    }
    
    /* Center align real results testimonial author on mobile */
    .real-results-testimonial-author {
        text-align: center;
    }
    
    /* Keep points content left-aligned */
    ul, ol, li {
        text-align: left;
    }
    
    /* Center align why program stat and conclusion on mobile */
    .why-program-stat,
    .why-program-conclusion {
        text-align: center;
    }
    
    /* Keep program duration content left-aligned */
    .program-duration-practices,
    .program-duration-applications,
    .program-duration-enrollment {
        text-align: left;
    }
    
    /* Keep form inputs left-aligned */
    input, textarea, select {
        text-align: left;
    }
    
    .faq-section {
        padding: 1.5rem 0;
    }
    
    .faq-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
        box-sizing: border-box;
    }
    
    .faq-header {
        margin-bottom: 1.5rem;
    }
    
    .faq-tag-container {
        margin-bottom: 0.75rem;
        background-color: #e8e3f5;
        padding: 0.4rem 0.875rem;
        border-radius: 50px;
    }
    
    .faq-icon-wrapper {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .faq-icon {
        width: 12px;
        height: 12px;
        display: block;
    }
    
    .faq-tag {
        font-size: 13px;
        color: #2c35e0;
        padding: 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 1rem 0;
    }
    
    .faq-question-text {
        font-size: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-chevron {
        font-size: 12px;
    }
    
    .how-it-works-section {
        padding: 1.5rem 0;
    }
    
    .how-it-works-container {
        padding: 0 1rem;
    }
    
    .how-it-works-header {
        margin-bottom: 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 28px;
    }
    
    .how-it-works-subtitle {
        font-size: 16px;
    }
    
    .how-it-works-grid {
        display: inline;
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .how-it-works-card {
        display: inline-block;
        padding: 1.75rem 1.25rem;
        min-width: 260px;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .how-it-works-card:last-child {
        margin-right: 0;
    }
    
    .how-it-works-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .how-it-works-card-title {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }
    
    .how-it-works-card-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Contact Form Section - Small Mobile */
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-form-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: start;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-left {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-right {
        display: none !important; /* Hidden on mobile */
    }
    
    .contact-form-image-mobile {
        display: flex !important; /* Visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .contact-form-image-mobile .contact-form-image {
        width: 100% !important;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto;
    }
    
    .contact-form-heading {
        font-size: 28px;
        margin-bottom: 1rem;
    }
    
    .contact-form-subheading {
        font-size: 18px;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .contact-form-description {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-embed {
        height: 480px;
        margin-top: 1rem;
        overflow: hidden;
    }
    
    .contact-form-embed iframe {
        overflow: hidden;
    }
    
    .contact-form {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input {
        font-size: 15px;
        padding: 0.875rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .form-group-half {
        width: 100%;
        max-width: 100%;
    }
    
    .btn-contact-form {
        font-size: 15px;
        padding: 0.875rem 1.25rem;
        margin-top: 0.5rem;
    }
    
    .contact-form-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Footer Section - Small Mobile */
    .footer-section {
        padding: 1.5rem 0;
    }
    
    .footer-container {
        display: block !important;
        text-align: center;
        padding: 0;
    }
    
    .footer-left {
        display: block !important;
        width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        display: block !important;
        max-width: 160px;
        margin: 0 auto 1rem auto;
    }
    
    .footer-copyright {
        display: block !important;
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
        padding: 0 0.5rem;
        margin: 0;
    }
    
    .footer-right {
        display: block !important;
        width: 100%;
        text-align: center;
    }
    
    .footer-follow-text {
        display: block !important;
        text-align: center;
        font-size: 13px;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .footer-social-icons {
        display: block !important;
        text-align: center;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .footer-social-icons .social-icon {
        display: inline-block !important;
        margin: 0 0.3125rem;
        vertical-align: top;
        width: 36px !important;
        height: 36px !important;
        flex: none !important;
    }
    
    .social-icon {
        width: 36px !important;
        height: 36px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
        margin-top: 8px;
    }
    
    .how-it-works-section {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }
    
    .how-it-works-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .how-it-works-header {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .how-it-works-title {
        font-size: 28px;
    }
    
    .how-it-works-subtitle {
        font-size: 16px;
    }
    
    .how-it-works-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .how-it-works-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .how-it-works-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .how-it-works-card-title {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }
    
    .how-it-works-card-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .program-duration-section {
        padding: 0;
        margin-top: 0;
    }
    
    .program-duration-section .why-program-container {
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 20px;
    }
    
    .program-duration-section .why-program-content {
        gap: 1.25rem;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .program-duration-section .why-program-content br {
        display: none;
    }
    
    .program-duration-section .why-program-image-container {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .program-duration-section .why-program-image {
        margin-top: 0;
    }
    
    .why-program-image {
        padding: 40px 0px 20px 30px;
    }
    
    .program-duration-tag {
        padding: 0.4rem 0.75rem;
        margin-top: 0;
    }
    
    .program-duration-tag-icon {
        width: 12px;
        height: 12px;
    }
    
    .program-duration-tag-text {
        font-size: 12px;
    }
    
    .program-duration-heading {
        font-size: 28px;
    }
    
    .program-duration-text {
        font-size: 15px;
    }
    
    .btn-program-duration {
        font-size: 14px;
        padding: 0.75rem 1.5rem;
    }
    
    .why-program-section {
        padding: 1.5rem 0;
    }
    
    .why-program-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .why-program-content {
        gap: 1.25rem;
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
    }
    
    .why-program-content br {
        display: none;
    }
    
    .why-program-tag {
        padding: 0.4rem 0.75rem;
    }
    
    .why-program-tag-icon {
        width: 12px;
        height: 12px;
    }
    
    .why-program-tag-text {
        font-size: 12px;
    }
    
    .why-program-heading {
        font-size: 24px;
    }
    
    .why-program-stat {
        font-size: 16px;
    }
    
    .why-program-conclusion {
        font-size: 15px;
    }
    
    .program-duration-enrollment {
        font-size: 24px;
        text-align: center;
    }
    
    .program-duration-practices {
        font-size: 18px;
    }
    
    .program-duration-practices .practices-bold {
        font-size: 24px;
    }
    
    .program-duration-applications {
        font-size: 18px;
    }
    
    .program-duration-tag {
        margin-top: -30px;
    }
}

/* Shared Investment Section Styles */
.shared-section {
    background-color: #f8f9fa;
    width: 100%;
    padding: 4rem 0;
}

.shared-top {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.shared-top-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.shared-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin: 0;
}

.shared-heading .highlight-blue {
    color: #636ae8;
}

.shared-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shared-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shared-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.shared-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.shared-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shared-text-bold {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

.shared-text-normal {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.btn-shared {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    padding: 0.875rem 2rem;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.btn-shared:hover {
    background-color: #5359d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 106, 232, 0.3);
}

.shared-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.shared-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Shared Section - Tablet Styles */
@media (max-width: 1024px) {
    .shared-section {
        padding: 3rem 0;
    }
    
    .shared-top-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .shared-heading {
        font-size: 42px;
    }
    
    .shared-container {
        gap: 3rem;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .shared-content {
        gap: 1.5rem;
    }
    
    .shared-text-bold {
        font-size: 22px;
    }
    
    .shared-text-normal {
        font-size: 17px;
    }
    
    .shared-icon {
        width: 22px;
        height: 22px;
    }
    
    .btn-shared {
        font-size: 15px;
        padding: 0.75rem 1.75rem;
    }
}

/* Shared Section - Mobile Styles */
@media (max-width: 768px) {
    .shared-section {
        padding: 2rem 0;
    }
    
    .shared-top {
        margin-bottom: 2rem;
    }
    
    .shared-top-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .shared-heading {
        font-size: 32px;
    }
    
    .shared-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .shared-content {
        order: 1;
        gap: 1.5rem;
    }
    
    .shared-image-container {
        order: 2;
    }
    
    .shared-text-bold {
        font-size: 20px;
    }
    
    .shared-text-normal {
        font-size: 16px;
    }
    
    .shared-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-shared {
        width: 100%;
        font-size: 16px;
        padding: 0.875rem 2rem;
        text-align: center;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .shared-section {
        padding: 1.5rem 0;
    }
    
    .shared-top-content {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .shared-heading {
        font-size: 24px;
    }
    
    .shared-container {
        padding: 0 0.75rem;
        gap: 2rem;
        max-width: 100%;
    }
    
    .shared-content {
        gap: 1.25rem;
    }
    
    .shared-text-bold {
        font-size: 18px;
    }
    
    .shared-text-normal {
        font-size: 15px;
    }
    
    .shared-icon {
        width: 18px;
        height: 18px;
    }
    
    .btn-shared {
        font-size: 15px;
        padding: 0.75rem 1.5rem;
    }
}

/* What You Get Section Styles */
.what-you-get-section {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 0;
}

.what-you-get-top {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.what-you-get-top-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.what-you-get-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.what-you-get-heading .text-dark-blue {
    color: #1e40af;
}

.what-you-get-heading .text-bright-blue {
    color: #2c35e0;
}

.what-you-get-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.what-you-get-subheading .text-bold {
    font-weight: 700;
}

.what-you-get-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.what-you-get-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.what-you-get-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.what-you-get-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.what-you-get-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.what-you-get-quote-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.8;
    position: relative;
    top: -81px;
}

.what-you-get-testimonial-content {
    flex: 1;
    text-align: left;
}

.what-you-get-testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.what-you-get-testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.what-you-get-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-what-you-get {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    padding: 0.875rem 2rem;
    border-radius: 6px;
}

.btn-what-you-get:hover {
    background-color: #5359d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 106, 232, 0.3);
}

/* What You Get Section - Tablet Styles */
@media (max-width: 1024px) {
    .what-you-get-section {
        padding: 3rem 0;
    }
    
    .what-you-get-top {
        margin-bottom: 2.5rem;
    }
    
    .what-you-get-top-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .what-you-get-heading {
        font-size: 42px;
    }
    
    .what-you-get-subheading {
        font-size: 19px;
    }
    
    .what-you-get-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .what-you-get-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .what-you-get-item {
        padding: 1.75rem;
        gap: 1.25rem;
    }
    
    .what-you-get-image {
        width: 160px;
        height: 120px;
    }
    
    .what-you-get-text {
        font-size: 19px;
    }
    
    .what-you-get-testimonial {
        padding: 1.75rem;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .what-you-get-quote-icon {
        width: 80px;
        height: 80px;
        opacity: 0.8;
        position: relative;
        top: -81px;
    }
    
    .what-you-get-testimonial-text {
        font-size: 22px;
    }
    
    .what-you-get-testimonial-author {
        font-size: 22px;
    }
    
    .btn-what-you-get {
        font-size: 15px;
        padding: 0.75rem 1.75rem;
    }
}

/* What You Get Section - Mobile Styles */
@media (max-width: 768px) {
    .what-you-get-section {
        padding: 2rem 0;
    }
    
    .what-you-get-top {
        margin-bottom: 2rem;
    }
    
    .what-you-get-top-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .what-you-get-heading {
        font-size: 32px;
    }
    
    .what-you-get-subheading {
        font-size: 18px;
    }
    
    .what-you-get-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .what-you-get-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .what-you-get-image {
        width: 140px;
        height: 105px;
    }
    
    .what-you-get-text {
        font-size: 18px;
    }
    
    .what-you-get-testimonial {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .what-you-get-quote-icon {
        width: 70px;
        height: 70px;
        opacity: 0.8;
        position: relative;
        top: -81px;
    }
    
    .what-you-get-testimonial-content {
        text-align: center;
    }
    
    .what-you-get-testimonial-text {
        font-size: 20px;
    }
    
    .what-you-get-testimonial-author {
        font-size: 20px;
    }
    
    .btn-what-you-get {
        width: 100%;
        max-width: 400px;
        font-size: 16px;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .what-you-get-section {
        padding: 1.5rem 0;
    }
    
    .what-you-get-top {
        margin-bottom: 1.5rem;
    }
    
    .what-you-get-top-content {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .what-you-get-heading {
        font-size: 28px;
    }
    
    .what-you-get-subheading {
        font-size: 16px;
    }
    
    .what-you-get-container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .what-you-get-grid {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .what-you-get-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .what-you-get-image {
        width: 120px;
        height: 90px;
    }
    
    .what-you-get-text {
        font-size: 16px;
    }
    
    .what-you-get-testimonial {
        padding: 1.25rem;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .what-you-get-quote-icon {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        position: relative;
        top: -10px;
    }
    
    .what-you-get-testimonial-text {
        font-size: 18px;
    }
    
    .what-you-get-testimonial-author {
        font-size: 18px;
    }
    
    .btn-what-you-get {
        font-size: 15px;
        padding: 0.75rem 1.5rem;
    }
}

/* Why This Matters Section Styles */
.why-matters-section {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 0;
}

.why-matters-top {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.why-matters-top-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.why-matters-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-matters-heading .highlight-blue {
    color: #636ae8;
}

.why-matters-intro {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-matters-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.why-matters-middle-text {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.why-matters-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.why-matters-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.why-matters-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    text-align: center;
}

.why-matters-block {
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    aspect-ratio: 1;
}

.why-matters-icon-container {
    background-color: #636ae8;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-matters-icon {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.why-matters-bottom-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Why This Matters Section - Tablet Styles */
@media (max-width: 1024px) {
    .why-matters-section {
        padding: 3rem 0;
    }
    
    .why-matters-top-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .why-matters-heading {
        font-size: 42px;
    }
    
    .why-matters-intro {
        font-size: 17px;
    }
    
    .why-matters-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .why-matters-middle-text {
        font-size: 17px;
    }
    
    .why-matters-blocks {
        gap: 1rem;
    }
    
    .why-matters-block {
        padding: 1.75rem;
        aspect-ratio: 1;
    }
    
    .why-matters-label {
        font-size: 15px;
    }
    
    .why-matters-icon {
        max-width: 100px;
    }
    
    .why-matters-bottom-text {
        font-size: 17px;
    }
}

/* Why This Matters Section - Mobile Styles */
@media (max-width: 768px) {
    .why-matters-section {
        padding: 2rem 0;
    }
    
    .why-matters-top {
        margin-bottom: 2rem;
    }
    
    .why-matters-top-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .why-matters-heading {
        font-size: 32px;
    }
    
    .why-matters-intro {
        font-size: 16px;
    }
    
    .why-matters-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .why-matters-middle-text {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    
    .why-matters-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .why-matters-block {
        padding: 1.5rem;
        aspect-ratio: 1;
    }
    
    .why-matters-label {
        font-size: 15px;
    }
    
    .why-matters-icon {
        max-width: 90px;
    }
    
    .why-matters-bottom-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-matters-section {
        padding: 1.5rem 0;
    }
    
    .why-matters-top-content {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .why-matters-heading {
        font-size: 24px;
    }
    
    .why-matters-intro {
        font-size: 15px;
    }
    
    .why-matters-container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .why-matters-middle-text {
        font-size: 15px;
        margin-bottom: 1.25rem;
    }
    
    .why-matters-blocks {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .why-matters-block {
        padding: 1.25rem;
        aspect-ratio: 1;
    }
    
    .why-matters-label {
        font-size: 14px;
    }
    
    .why-matters-icon {
        max-width: 80px;
    }
    
    .why-matters-bottom-text {
        font-size: 15px;
    }
}

/* Program Duration Section Styles */
.program-duration-section {
    background-color: #ffffff;
    width: 100%;
    padding: 0;
}

.program-duration-heading-wrapper {
    background-color: #f8f9fa;
    width: 100%;
    padding: 2rem 0;
}

.program-duration-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.program-duration-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.program-duration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
}

.program-duration-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-duration-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

.program-duration-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #636ae8;
    margin: 0;
    line-height: 1.2;
}

.program-duration-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.program-duration-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.program-duration-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.program-duration-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.program-duration-divider {
    height: 1px;
    background-color: #000000;
    width: 100%;
    margin: 0;
}

/* Program Duration Section - Tablet Styles */
@media (max-width: 1024px) {
    .program-duration-heading-wrapper {
        padding: 1.5rem 0;
    }
    
    .program-duration-container {
        padding: 0 1.5rem;
    }
    
    .program-duration-heading {
        font-size: 36px;
    }
    
    .program-duration-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }
    
    .program-duration-title {
        font-size: 28px;
    }
    
    .program-duration-subtitle {
        font-size: 24px;
    }
    
    .program-duration-text {
        font-size: 17px;
    }
}

/* Program Duration Section - Mobile Styles */
@media (max-width: 768px) {
    .program-duration-heading-wrapper {
        padding: 1.5rem 0;
    }
    
    .program-duration-container {
        padding: 0 1rem;
    }
    
    .program-duration-heading {
        font-size: 28px;
    }
    
    .program-duration-content {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .program-duration-title {
        font-size: 24px;
    }
    
    .program-duration-subtitle {
        font-size: 20px;
    }
    
    .program-duration-text {
        font-size: 16px;
    }
    
    .program-duration-item {
        padding: 0.75rem 0;
    }
    
    .program-duration-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .program-duration-heading {
        font-size: 24px;
    }
    
    .program-duration-title {
        font-size: 20px;
    }
    
    .program-duration-subtitle {
        font-size: 18px;
    }
    
    .program-duration-text {
        font-size: 15px;
    }
}

/* Real Results Section Styles */
.real-results-section {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 0;
}

.real-results-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.real-results-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.real-results-heading .highlight-blue {
    color: #2c35e0;
}

.real-results-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #000000;
    line-height: 1.6;
    
    text-align: center;
}

.real-results-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.real-results-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.real-results-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.real-results-quote-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.8;
    position: relative;
    top: -81px;
}

.real-results-testimonial-content {
    flex: 1;
    text-align: left;
}

.real-results-testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.real-results-testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.real-results-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.btn-real-results {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-real-results:hover {
    background-color: #5359d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 106, 232, 0.3);
}

.real-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.real-results-card {
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-bg-blue {
    background-color: #e0e7ff;
}

.card-bg-light-blue {
    background-color: #eff6ff;
}

.card-bg-light-green {
    background-color: #f0fdf4;
}

.card-bg-light-purple {
    background-color: #f5f3ff;
}

.card-inner {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #fafafa;
}

.card-wide {
    grid-column: span 2;
}

.card-full-width {
    grid-column: span 2;
}

.card-headline {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #636ae8;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.card-headline-green {
    color: #10b981;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.card-description-large {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.description-highlight {
    font-weight: 700;
    color: #636ae8;
}

.card-period {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.card-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0 0 0.5rem 0;
}

.card-main-value {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.card-data-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.data-column {
    display: flex;
    flex-direction: column;
}

.data-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0 0 0.5rem 0;
}

.data-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.data-red {
    color: #ef4444;
}

.data-green {
    color: #10b981;
}

.data-sources {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.source-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
}

.period-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.period-item-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.period-item-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.period-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.period-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.dot-blue {
    background-color: #636ae8;
}

.dot-green {
    background-color: #10b981;
}

.dot-grey {
    background-color: #999999;
}

.dot-purple {
    background-color: #8b5cf6;
}

.period-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.period-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
}

.period-value {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem 0;
}

.value-blue {
    color: #636ae8;
}

.value-green {
    color: #10b981;
}

.value-grey {
    color: #666666;
}

.value-purple {
    color: #8b5cf6;
}

.period-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.metrics-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.metrics-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.metrics-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 0.25rem 0;
}

.metrics-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metric-card-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.metric-card-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.metric-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.metric-period {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem 0;
}

.metric-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
}

/* What You Get Program Section Styles */
.what-you-get-program-section {
    background-color: #f8f9fa;
    width: 100%;
    padding: 4rem 0;
}

.what-you-get-program-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.what-you-get-program-heading {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 3rem 0;
}

.what-you-get-program-heading .text-blue {
    color: #2c35e0;
    font-weight: 400;
}

.what-you-get-program-heading .text-subtitle {
    color: #333333;
    font-weight: 400;
}

.what-you-get-program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.what-you-get-program-left {
    background-color: #e9ecef;
    border-radius: 12px 0 0 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.program-split-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.program-split-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.program-split-divider {
    width: 2px;
    background-color: #333333;
    height: 100%;
    min-height: 400px;
}

.program-split-left,
.program-split-right {
    text-align: center;
}

.program-split-heading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.program-split-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
}

.program-split-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-split-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.program-split-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.program-split-deliverables li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-split-deliverables li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
    font-size: 20px;
}

.what-you-get-program-right {
    background-color: #ffffff;
    border-radius: 0 12px 12px 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
}

.program-shared-success-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c35e0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.program-shared-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #333333;
    margin: 0 0 2rem 0;
    text-align: left;
}

.program-shared-quote {
    margin-bottom: 2rem;
    border-left: 3px solid #636ae8;
    padding-left: 1.5rem;
    width: 100%;
    text-align: left;
}

.program-shared-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.program-cta-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c35e0;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.program-cta-link:hover {
    color: #242cc7;
}

/* Campaign & Support Section Styles */
.campaign-support-section {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 0rem 6rem 0rem;
}

.campaign-support-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.campaign-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.campaign-support-card {
    background-color: #ffffff;
    border-radius: 12px;
   
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.campaign-support-image-container {
    width: 100%;
    margin-bottom: 1.5rem;
    background-color: #e3f2fd;
    border-radius: 8px;
    padding-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-support-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.campaign-support-heading {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #2c35e0;
    margin: 0 0 1.5rem 0;
    padding-left: 30px;
}

.campaign-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 30px;
    padding-bottom: 30px;
}

.campaign-support-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.campaign-support-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
    font-size: 20px;
    font-weight: 700;
}

.campaign-support-list li:last-child {
    margin-bottom: 0;
}

.campaign-creative-card .campaign-support-list li {
    padding-left: 2rem;
}

/* Program Duration Section Styles */
.program-duration-section {
    background-color: #f8f9fa;
    width: 100%;
    padding: 4rem 0;
}

.program-duration-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.program-duration-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2.5rem;
    padding-right: 2rem;
    align-items: center;
    text-align: center;
}

.program-duration-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-top: -145px;
}

.program-duration-tag-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.program-duration-tag-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    text-transform: uppercase;
}

.program-duration-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.program-duration-heading .text-dark-blue {
    color: #636ae8;
}

.program-duration-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.btn-program-duration {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
    width: auto;
    display: inline-block;
}

.btn-program-duration:hover {
    background-color: #5359d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 106, 232, 0.3);
}

/* How It Works Section Styles */
.how-it-works-section {
    background-color: #1e40af;
    width: 100%;
    padding: 4rem 0;
    overflow-x: hidden;
}

.how-it-works-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.how-it-works-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.how-it-works-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
}

.how-it-works-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.how-it-works-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-it-works-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
}

.how-it-works-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

.how-it-works-card-description strong {
    font-weight: 700;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 0;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-tag-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background-color: #e8e3f5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.faq-icon-wrapper {
    width: 24px;
    height: 24px;
    background-color: #2c35e0;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.faq-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.faq-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2c35e0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c35e0;
    margin: 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #333333;
    flex: 1;
}

.faq-chevron {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

.faq-answer strong {
    font-weight: 700;
}

/* Contact Form Section Styles */
.contact-form-section {
    background-color: #f8f9fa;
    width: 100%;
    padding: 4rem 0;
    overflow-x: hidden;
}

.contact-form-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-left {
    display: flex;
    flex-direction: column;
}

.contact-form-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c35e0;
    margin: 0 0 1.5rem 0;
}

.contact-form-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2c35e0;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.contact-form-subheading .text-blue {
    color: #2c35e0;
    font-weight: 700;
}

.contact-form-subheading strong {
    font-weight: 700;
}

.contact-form-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.contact-form-embed {
    width: 100%;
    max-width: 100%;
    height: 522px;
    margin-top: 1rem;
    overflow: hidden;
}

.contact-form-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.form-group-half {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.form-group input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #636ae8;
}

.form-group input::placeholder {
    color: #999999;
}

.btn-contact-form {
    background-color: #2c35e0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.btn-contact-form:hover {
    background-color: #5359d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 106, 232, 0.3);
}

.contact-form-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-form-image {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.contact-form-image-mobile {
    display: none !important; /* Hidden on desktop */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-image-mobile .contact-form-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Footer Section Styles */
.footer-section {
    background-color: #1a1a1a;
    width: 100%;
    padding: 1.5rem 0;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-follow-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

#636ae8.program-duration-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.program-duration-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #636ae8;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.program-duration-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Testimonial Section Styles */
.testimonial-section {
    width: 100%;
    background-color: #ffffff;
}

.testimonial-top {
    background-color: #ffffff;
    padding: 4rem 2rem 8rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.testimonial-heading .highlight-blue {
    color: #636ae8;
}

.testimonial-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

.testimonial-video-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    padding-bottom: 40%; /* More rectangular aspect ratio (wider) */
    height: 0;
    overflow: hidden;
    margin: -6rem auto 0;
    z-index: 10;
}

.testimonial-bottom {
    background-color: #212529;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    margin-top: -262px;
    padding-top: 309px;
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.testimonial-quote {
    max-width: 900px;
    text-align: center;
}

.testimonial-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

/* Campaign & Support Section - Tablet Styles */
@media (max-width: 1024px) {
    .campaign-support-section {
        padding: 3rem 0;
    }
    
    .campaign-support-container {
        padding: 0 1.5rem;
    }
    
    .campaign-support-grid {
        gap: 1.5rem;
    }
    
    .campaign-support-card {
        padding: 1.5rem;
    }
    
    .campaign-support-image-container {
        padding: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .campaign-support-heading {
        font-size: 22px;
        margin-bottom: 1.25rem;
    }
    
    .campaign-support-list li {
        font-size: 17px;
    }
}

/* Real Results Section - Tablet Styles */
@media (max-width: 1024px) {
    .what-you-get-program-section {
        padding: 3rem 0;
    }
    
    .what-you-get-program-container {
        padding: 0 1.5rem;
    }
    
    .what-you-get-program-heading {
        font-size: 36px;
    }
    
    .what-you-get-program-content {
        gap: 1.5rem;
    }
    
    .what-you-get-program-left {
        padding: 1.5rem;
    }
    
    .program-split-container {
        gap: 1.5rem;
    }
    
    .program-split-divider {
        min-height: 350px;
    }
    
    .program-split-heading {
        font-size: 22px;
    }
    
    .program-split-percentage {
        font-size: 28px;
    }
    
    .program-split-icon {
        width: 100px;
        height: 100px;
    }
    
    .program-split-deliverables li {
        font-size: 16px;
    }
    
    .what-you-get-program-right {
        padding: 2rem;
    }
    
    .program-shared-success-heading {
        font-size: 28px;
    }
    
    .program-shared-tagline {
        font-size: 17px;
    }
    
    .program-shared-quote-text {
        font-size: 18px;
    }
    
    .program-cta-link {
        font-size: 17px;
    }
    
    .real-results-section {
        padding: 3rem 0;
    }
    
    .real-results-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .real-results-heading {
        font-size: 42px;
    }
    
    .real-results-subtitle {
        font-size: 17px;
    }
    
    .real-results-image-container {
        margin-bottom: 2.5rem;
    }
    
    .real-results-testimonial {
        padding: 1.75rem;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .real-results-quote-icon {
        width: 80px;
        height: 80px;
        opacity: 0.8;
        position: relative;
        top: -81px;
    }
    
    .real-results-testimonial-text {
        font-size: 22px;
    }
    
    .real-results-testimonial-author {
        font-size: 22px;
    }
    
    .btn-real-results {
        font-size: 15px;
        padding: 0.75rem 1.75rem;
    }
    
    .real-results-grid {
        gap: 1.25rem;
    }
    
    .real-results-card {
        padding: 0.875rem;
    }
    
    .card-inner {
        padding: 1.5rem;
    }
    
    .card-headline {
        font-size: 22px;
    }
    
    .card-main-value {
        font-size: 32px;
    }
    
    .period-value {
        font-size: 28px;
    }
    
    .period-item-box {
        padding: 1.5rem;
    }
    
    .metric-value {
        font-size: 32px;
    }
    
    .metrics-grid {
        gap: 1.5rem;
    }
    
    .metric-card-box {
        padding: 1.5rem;
    }
    
    /* Testimonial Section - Tablet Styles */
    .testimonial-top {
        padding: 3rem 1.5rem 6rem;
    }
    
    .testimonial-heading {
        font-size: 36px;
    }
    
    .testimonial-subheading {
        font-size: 17px;
    }
    
    .testimonial-video-container {
        max-width: 900px;
        padding-bottom: 42%;
        margin: -4.5rem auto 0;
    }
    
    .testimonial-bottom {
        padding: 6rem 1.5rem 3rem;
        gap: 2.5rem;
    }
    
    .testimonial-quote-text {
        font-size: 19px;
    }
    
    .testimonial-author {
        font-size: 17px;
    }
}

/* Campaign & Support Section - Mobile Styles */
@media (max-width: 768px) {
    .campaign-support-section {
        padding: 2rem 0;
    }
    
    .campaign-support-container {
        padding: 0 1rem;
    }
    
    .campaign-support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .campaign-support-card {
        padding: 1.5rem;
    }
    
    .campaign-support-image-container {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .campaign-support-heading {
        font-size: 20px;
        margin-bottom: 1rem;
    }
    
    .campaign-support-list li {
        font-size: 16px;
        margin-bottom: 0.875rem;
    }
}

/* Real Results Section - Mobile Styles */
@media (max-width: 768px) {
    .what-you-get-program-section {
        padding: 2rem 0;
    }
    
    .what-you-get-program-container {
        padding: 0 1rem;
    }
    
    .what-you-get-program-heading {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .what-you-get-program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-you-get-program-left {
        border-radius: 12px;
        padding: 1.5rem;
    }
    
    .what-you-get-program-right {
        border-radius: 12px;
    }
    
    .program-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-split-divider {
        width: 100%;
        height: 2px;
        min-height: 2px;
    }
    
    .program-split-heading {
        font-size: 20px;
    }
    
    .program-split-percentage {
        font-size: 24px;
    }
    
    .program-split-icon {
        width: 80px;
        height: 80px;
    }
    
    .program-split-deliverables li {
        font-size: 16px;
    }
    
    .what-you-get-program-right {
        padding: 1.5rem;
    }
    
    .program-shared-success-heading {
        font-size: 24px;
    }
    
    .program-shared-tagline {
        font-size: 16px;
    }
    
    .program-shared-quote {
        padding-left: 1rem;
    }
    
    .program-shared-quote-text {
        font-size: 17px;
    }
    
    .program-shared-quote-text br {
        display: none;
    }
    
    .program-cta-link {
        font-size: 16px;
    }
    
    .real-results-section {
        padding: 2rem 0;
    }
    
    .real-results-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .real-results-heading {
        font-size: 32px;
    }
    
    .real-results-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }
    
    .real-results-image-container {
        margin-bottom: 2rem;
    }
    
    .real-results-testimonial {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .real-results-quote-icon {
        width: 70px;
        height: 70px;
        opacity: 0.8;
        position: relative;
        top: -81px;
    }
    
    .real-results-testimonial-content {
        text-align: left;
    }
    
    .real-results-testimonial-text br {
        display: none;
    }
    
    .real-results-testimonial-text {
        font-size: 20px;
    }
    
    .real-results-testimonial-author {
        font-size: 20px;
    }
    
    .btn-real-results {
        width: 100%;
        max-width: 400px;
        font-size: 16px;
        padding: 0.875rem 2rem;
    }
    
    .real-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-wide,
    .card-full-width {
        grid-column: span 1;
    }
    
    .real-results-card {
        padding: 0.75rem;
    }
    
    .card-inner {
        padding: 1.25rem;
    }
    
    .card-headline {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .card-data-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-main-value {
        font-size: 28px;
    }
    
    .data-value {
        font-size: 24px;
    }
    
    .period-value {
        font-size: 24px;
    }
    
    .period-item-box {
        padding: 1.25rem;
    }
    
    .metrics-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-card-box {
        padding: 1.25rem;
    }
    
    .metric-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .campaign-support-section {
        padding: 1.5rem 0;
    }
    
    .campaign-support-container {
        padding: 0 0.75rem;
    }
    
    .campaign-support-heading {
        font-size: 24px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .contact-form-heading {
        font-size: 28px;
    }
    
    .program-duration-enrollment {
        font-size: 24px;
        text-align: center;
    }
    
    .program-duration-practices {
        font-size: 16px;
    }
    
    .program-duration-practices .practices-bold {
        font-size: 20px;
    }
    
    .program-duration-applications {
        font-size: 16px;
    }
    
    .program-duration-tag {
        margin-top: -20px;
    }
    
    .campaign-support-grid {
        gap: 1.5rem;
    }
    
    .campaign-support-card {
        padding: 1.25rem;
    }
    
    .campaign-support-image-container {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .campaign-support-heading {
        font-size: 18px;
        margin-bottom: 1rem;
    }
    
    .campaign-support-list li {
        font-size: 15px;
        margin-bottom: 0.75rem;
    }
    
    .what-you-get-program-section {
        padding: 1.5rem 0;
    }
    
    .campaign-support-list {
      padding-left: 0px;
      padding-bottom: 0px;
    }

    .what-you-get-program-container {
        padding: 0 0.75rem;
    }
    
    .what-you-get-program-heading {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    
    .what-you-get-program-content {
        gap: 1.5rem;
    }
    
    .what-you-get-program-left {
        padding: 1.25rem;
    }
    
    .program-split-container {
        gap: 1.5rem;
    }
    
    .program-split-heading {
        font-size: 18px;
    }
    
    .program-split-percentage {
        font-size: 22px;
    }
    
    .program-split-icon {
        width: 70px;
        height: 70px;
    }
    
    .program-split-deliverables li {
        font-size: 15px;
    }
    
    .what-you-get-program-right {
        padding: 1.25rem;
    }
    
    .program-shared-success-heading {
        font-size: 22px;
    }
    
    .program-shared-tagline {
        font-size: 15px;
    }
    
    .program-shared-quote {
        padding-left: 0.75rem;
    }
    
    .program-shared-quote-text {
        font-size: 16px;
    }
    
    .program-shared-quote-text br {
        display: none;
    }
    
    .program-cta-link {
        font-size: 15px;
    }
    
    .real-results-section {
        padding: 1.5rem 0;
    }
    
    .real-results-container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .real-results-heading {
        font-size: 24px;
    }
    
    .real-results-subtitle {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
    
    .real-results-image-container {
        margin-bottom: 1.5rem;
    }
    
    .real-results-testimonial {
        padding: 1.25rem;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .real-results-quote-icon {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        position: relative;
        top: -10px;
    }
    
    .real-results-testimonial-text br {
        display: none;
    }
    
    .real-results-testimonial-text {
        font-size: 18px;
    }
    
    .real-results-testimonial-author {
        font-size: 18px;
    }
    
    .btn-real-results {
        font-size: 15px;
        padding: 0.75rem 1.5rem;
    }
    
    .real-results-grid {
        gap: 1.25rem;
    }
    
    .real-results-card {
        padding: 0.625rem;
    }
    
    .card-inner {
        padding: 1rem;
    }
    
    .card-headline {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-main-value {
        font-size: 24px;
    }
    
    .data-value {
        font-size: 20px;
    }
    
    .period-value {
        font-size: 20px;
    }
    
    .period-item-box {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .metric-card-box {
        padding: 1rem;
    }
    
    /* Testimonial Section - Mobile Styles */
    .testimonial-top {
        padding: 2rem 1rem 4rem;
    }
    
    .testimonial-heading {
        font-size: 28px;
    }
    
    .testimonial-subheading {
        font-size: 16px;
    }
    
    .testimonial-video-container {
        max-width: 100%;
        padding-bottom: 45%;
        margin: -3rem auto 0;
    }
    
    .testimonial-bottom {
        padding: 4rem 1rem 2rem;
        gap: 2rem;
    }
    
    .testimonial-quote-text {
        font-size: 18px;
    }
    
    .testimonial-author {
        font-size: 16px;
    }
}

/* Login Page Styles */
.login-page {
    background-color: #F8F9FB;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.login-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    padding: 0 2rem;
}

.login-logo-container {
    position: absolute;
    top: 0;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
}

.login-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
}

.login-content-wrapper {
    display: grid;
    grid-template-columns: 55% 35%;
    gap: 3rem;
    align-items: flex-start;
    padding-top: 4rem;
    
    overflow: visible;
}

.login-content-wrapper > * {
    min-width: 0;
}

.login-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-card {
    width: 100%;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 0.5rem;
}

.login-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
}

.login-form-embed {
    width: 100%;
    max-width: 100%;
    min-height: 541px;
    height: auto;
}

.login-form-embed iframe {
    width: 100%;
    min-height: 541px;
    height: 541px;
    border: none;
    border-radius: 24px;
}

.login-features-section {
    padding: 8rem 0;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.login-features-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    position: relative;
    padding-bottom: 1rem;
}

.login-features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #667EEA;
    border-radius: 2px;
}

.login-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    overflow: visible;
    margin-top: 30px;
}

.login-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
}

.login-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #212529;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
}

.login-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.login-separator-line {
    flex: 1;
    height: 1px;
    background-color: #E0E0E0;
}

.login-separator-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ADB5BD;
    font-weight: 500;
}

.login-social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.login-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: none;
}

a.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-social-btn:hover {
    border-color: #667EEA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

.login-register-link {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #212529;
    width: 100%;
}

.login-link {
    color: #667EEA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #5568D3;
    text-decoration: underline;
}

/* Tablet Styles for Login Page */
@media (max-width: 1024px) {
    .login-page {
        padding: 1.5rem 0;
    }
    
    .login-container {
        padding: 0 1.5rem;
    }
    
    .login-logo-container {
        right: 1.5rem;
    }
    
    .login-content-wrapper {
        gap: 3rem;
        padding-top: 3rem;
    }
    
    .login-form-card {
        max-width: 420px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .login-form-embed {
        min-height: 520px;
    }
    
    .login-form-embed iframe {
        min-height: 520px;
        height: 520px;
    }
    
    .login-features-title {
        font-size: 28px;
    }
    
    .login-feature-text {
        font-size: 16px;
    }
    
    .login-logo {
        max-height: 50px;
    }
}

/* Mobile Styles for Login Page */
@media (max-width: 768px) {
    .login-page {
        padding: 1rem 0;
    }
    
    .login-container {
        padding: 0 1rem;
        min-height: auto;
    }
    
    .login-logo-container {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 2rem;
        align-items: flex-start;
        padding: 0;
    }
    
    .login-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 0;
        min-height: auto;
    }
    
    .login-form-section {
        order: 1;
    }
    
    .login-features-section {
        order: 2;
        padding: 0;
        width: 100%;
        overflow: visible;
    }
    
    .login-form-card {
        max-width: 100%;
    }
    
    .login-title {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
    
    .login-form-embed {
        min-height: 500px;
    }
    
    .login-form-embed iframe {
        min-height: 500px;
        height: 500px;
    }
    
    .login-features-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }
    
    .login-features-list {
        gap: 1.5rem;
    }
    
    .login-feature-item {
        gap: 1rem;
    }
    
    .login-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .login-feature-text {
        font-size: 16px;
    }
    
    .login-separator {
        margin: 1.5rem 0;
    }
    
    .login-social-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .login-social-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 0.75rem 0;
    }
    
    .login-container {
        padding: 0 0.75rem;
    }
    
    .login-title {
        font-size: 18px;
        margin-bottom: 1.25rem;
    }
    
    .login-form-embed {
        min-height: 480px;
    }
    
    .login-form-embed iframe {
        min-height: 480px;
        height: 480px;
    }
    
    .login-features-title {
        font-size: 20px;
    }
    
    .login-feature-text {
        font-size: 15px;
    }
    
    .login-logo {
        max-height: 40px;
    }
    
    .login-separator {
        margin: 1.25rem 0;
    }
    
    .login-social-buttons {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .login-social-btn {
        width: 40px;
        height: 40px;
    }
    
    .login-register-link {
        font-size: 13px;
    }
}

