/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Alignment System - CSS Variables */
:root {
    --page-max-width: 1440px;
    --page-padding-horizontal: clamp(40px, 5vw, 88px);
}

/* Smooth Scrolling */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scroll offset for fixed navigation */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Navigation */
.navigation {
    width: 100%;
    height: 122px;
    background: #000000;
    position: relative;
    z-index: 100;
}

.nav-content {
    max-width: var(--page-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 158px;
    height: 41px;
    display: block;
}

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

.nav-items a {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-items a:hover {
    opacity: 0.8;
}

.spacer {
    color: rgba(0, 0, 0, 0);
    font-size: 18px;
}

/* Hamburger Menu Button - Hidden by default */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    transition: transform 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile CTA Button - Hidden by default */
.btn-mobile-cta {
    display: none;
    padding: 8px 16px;
    background: #2CCE80;
    color: #FFFFFF;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
    height: auto;
}

.btn-mobile-cta:hover {
    background: #25b870;
    border-color: #25b870;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-mobile-cta:active,
.btn-mobile-cta:focus {
    text-decoration: none;
    outline: none;
}

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0);
    border: 2px solid #000000;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #2CCE80;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    height: auto;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(44, 206, 128, 0.1);
}

.btn-primary-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background: #2CCE80;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    text-decoration: none;
    box-sizing: border-box;
    height: auto;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.btn-primary-nav:hover {
    background: #25b870;
    border-color: #25b870;
    color: #000000;
    text-decoration: none;
}

.btn-primary-nav:active,
.btn-primary-nav:focus {
    text-decoration: none;
    outline: none;
}

/* Notification Bar */
/* Notification Bar - Default (Green for Home Page) */
.notification-bar {
    width: 100%;
    height: 30px;
    background: #2CCE80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-bar-content {
    max-width: var(--page-max-width);
    width: 100%;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.notification-bar .lighter {
    font-weight: 400;
    color: #454545;
    opacity: 1;
}

.notification-bar .phone {
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
}

/* About Us Page - White Notification Bar */
.page-about .notification-bar {
    background: #FFFFFF;
    color: #000000;
    border-bottom: 1px solid #E6E6E6;
}

.page-about .notification-bar .phone {
    color: #000000;
}

.page-about .notification-bar .lighter {
    color: #454545;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 0;
    width: 100%;
    overflow: visible;
}

.hero-bg {
    width: 100%;
    height: 696px;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.hero-content {
    max-width: var(--page-max-width);
    width: 100%;
    height: 500px;
    margin: 0 auto;
    padding: 89px var(--page-padding-horizontal) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.page-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    max-width: 909px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.hero-subtitle {
    max-width: 829px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
}

.hero-cta-text {
    max-width: 936px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5em;
    color: #FFFFFF;
}

.btn-primary-hero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    min-width: 180px;
    padding: 8px 16px;
    background: #2CCE80;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    height: auto;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.hero-content .btn-primary-hero {
    margin-top: auto;
    margin-bottom: 24px;
}

.btn-primary-hero:hover {
    background: #25b870;
    border-color: #25b870;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-primary-hero:active,
.btn-primary-hero:focus {
    text-decoration: none;
    outline: none;
}

/* Divisor */
.divisor {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(var(--page-max-width) - (var(--page-padding-horizontal) * 2));
    width: calc(100% - (var(--page-padding-horizontal) * 2));
    height: 100px;
    background: linear-gradient(135deg, #F5F7F6 0%, #E8EFEB 100%);
    border-radius: 15px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.divisor-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    height: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.feature-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-item p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4em;
    color: #000000;
    margin: 0;
}

/* Steps Section */
.steps-section {
    padding: 150px 0 80px;
    position: relative;
    background: #FFFFFF;
    margin-top: 60px;
    width: 100%;
}

.steps-container {
    max-width: var(--page-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    position: relative;
    height: 325px;
    display: grid;
    grid-template-columns: minmax(300px, 456px) minmax(280px, 434px) 1fr;
    column-gap: clamp(20px, 2vw, 26px);
    align-items: start;
}

.steps-header {
    position: relative;
    width: 456px;
    margin-top: 69px;
    grid-column: 1;
    height: 161.39px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tint-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 301.42px;
    height: 81.39px;
    z-index: 1;
}

.steps-title {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2102em;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    margin-left: 13px;
    margin-bottom: 6px;
}

.steps-subtitle {
    position: relative;
    z-index: 2;
    font-family: 'Mistral', cursive;
    font-weight: 400;
    font-size: 40px;
    line-height: 1em;
    letter-spacing: 0.05em;
    color: #000000;
    margin: 0;
    margin-left: 13px;
    white-space: nowrap;
}

.phones-image {
    grid-column: 2;
    justify-self: start;
    align-self: start;
    width: 434px;
    height: 325px;
    object-fit: cover;
    margin-top: 0;
    margin-left: -75px;
}

.steps-list {
    grid-column: 3;
    width: 480px;
    margin-top: 1px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.step-item {
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-item h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}

.step-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #828282;
    margin: 0;
    text-align: left;
}

/* What Can You Do Section */
.what-can-you-do {
    position: relative;
    height: 437px;
    margin-top: 100px;
    width: 100%;
}

.green-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 437px;
    background: #2CCE80;
}

.what-can-you-do-container {
    position: relative;
    max-width: var(--page-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    height: 100%;
    z-index: 2;
}

.man-image {
    position: absolute;
    left: 50%;
    margin-left: -640px;
    top: -65px;
    width: 502px;
    height: 502px;
    object-fit: cover;
    z-index: 1;
}

.what-to-do-card {
    position: absolute;
    right: 85px;
    top: 60px;
    width: 729px;
    max-width: 55%;
    height: 317px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.what-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.what-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.what-text h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    color: #000000;
}

.what-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #828282;
}

.options-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
}

.option-item {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.option-item img {
    width: 25px;
    height: 25px;
}

.option-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
}

/* Mobile Decorations - Hidden by default */
.mobile-decorations {
    display: none;
}

/* Why Choose Us Section */
.why-choose-us {
    width: 100%;
    background: #F5F5F5;
    padding: 60px 0;
}

.why-choose-us-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.why-choose-us h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
    max-width: 700px;
}

.benefits-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
}

.benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-item:hover {
    border-color: #2CCE80;
    box-shadow: 0 8px 24px rgba(44, 206, 128, 0.15);
    transform: translateY(-4px);
}

.benefit-item img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-bottom: 4px;
    padding: 10px;
    background: linear-gradient(135deg, #E8F5E9 0%, #D4F1E3 100%);
    border-radius: 10px;
    border: 1px solid rgba(44, 206, 128, 0.2);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    flex: 1;
    width: 100%;
}

.benefit-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
    color: #000000;
    margin: 0;
}

.benefit-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #666666;
    margin: 0;
}

/* Direct Funder Section */
.direct-funder {
    position: relative;
    height: auto;
    min-height: 500px;
    margin-top: 60px;
    width: 100%;
    background: #2CCE80;
    padding: 0;
    overflow: hidden;
}


.footer-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 364px;
    object-fit: cover;
    opacity: 0;
}

.direct-funder-content {
    position: relative;
    max-width: var(--page-max-width);
    width: 100%;
    height: 100%;
    min-height: 500px;
    margin: 0 auto;
    padding: 50px var(--page-padding-horizontal);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.couple-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 0 60% 60% 0 / 0 50% 50% 0;
    border: none;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.1);
}

.couple-image::after {
    content: '';
    position: absolute;
    right: -3%;
    top: 0;
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(44, 206, 128, 0.4) 100%);
    pointer-events: none;
    filter: blur(15px);
}

.direct-funder-text {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: #FFFFFF;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.direct-funder-text h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #000000;
}

.direct-funder-text h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    color: #000000;
    max-width: 751px;
}

.direct-funder-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #666666;
    max-width: 751px;
}

.direct-funder .btn-primary {
    background: #2CCE80;
    color: #FFFFFF;
    border: 2px solid #2CCE80;
    width: 200px;
}

.direct-funder .btn-primary:hover {
    background: #26B870;
    border-color: #26B870;
    color: #FFFFFF;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 8px 16px;
    background: #2CCE80;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-sizing: border-box;
    height: auto;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.btn-primary:hover {
    background: #25b870;
    border-color: #25b870;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-primary:active,
.btn-primary:focus {
    text-decoration: none;
    outline: none;
    color: #FFFFFF;
}

/* Testimonials Section */
.testimonials-section {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 100px var(--page-padding-horizontal);
    background: #FFFFFF;
    width: 100%;
}

.testimonials-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
    margin-bottom: 32px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: flex;
    gap: 32px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
}

.testimonial-card {
    flex: 1;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial-card h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5em;
    color: #000000;
}

.avatar-section {
    display: flex;
    gap: 16px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-text .name {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
}

.testimonial-text .quote {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #828282;
}

/* Footer */
.footer {
    width: 100%;
    height: 264px;
    background: #F2F2F2;
    position: relative;
}

.footer-content {
    max-width: var(--page-max-width);
    width: 100%;
    height: 264px;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    margin-top: 66px;
    width: 158px;
    height: 41px;
}

.footer-menu {
    margin-top: 30px;
    width: 187px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.menu-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: #454545;
    margin: 0;
    text-align: left;
    width: 100%;
}

.footer-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #454545;
    text-decoration: none;
    transition: color 0.3s;
    text-align: left;
    width: 100%;
}

.footer-menu a:hover {
    color: #2CCE80;
}

.footer-divider {
    position: absolute;
    top: 1px;
    left: 80px;
    width: 1280px;
    height: 1px;
    background: #E6E6E6;
}

.footer-phone {
    position: absolute;
    left: 88px;
    top: 204px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}

.btn-primary-footer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 88px;
    top: 132px;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: #2CCE80;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary-footer:hover {
    background: #25b870;
    border-color: #25b870;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-primary-footer:active,
.btn-primary-footer:focus {
    text-decoration: none;
    outline: none;
    color: #FFFFFF;
}

/* ============================================================
   RESPONSIVE DESIGN - Mobile First Approach
   Breakpoints: 1024px (Tablet), 768px (Tablet Portrait), 480px (Mobile)
   ============================================================ */

/* Small Desktop / Large Laptop - 1025px to 1366px */
@media (min-width: 1025px) and (max-width: 1366px) {
    :root {
        --page-padding-horizontal: clamp(40px, 5vw, 60px);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    /* Steps Section - Critical Fix */
    .steps-section {
        padding: 80px 40px;
    }
    
    .steps-container {
        grid-template-columns: minmax(280px, 380px) minmax(240px, 340px) 1fr;
        column-gap: 20px;
    }
    
    .steps-header {
        width: 100%;
        max-width: 380px;
    }
    
    .steps-title {
        font-size: 38px;
    }
    
    .steps-subtitle {
        font-size: 36px;
    }
    
    .phones-image {
        width: 100%;
        max-width: 340px;
    }
    
    .steps-list {
        max-width: 100%;
    }
    
    /* What Can You Do Section */
    .what-can-you-do {
        height: auto;
        padding: 60px 0;
    }
    
    .green-bg {
        height: auto;
        min-height: 400px;
    }
    
    .man-image {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        margin: 0 0 40px 0;
        width: 380px;
        height: 380px;
        display: block;
    }
    
    .what-can-you-do-container {
        padding: 0 40px;
    }
    
    .what-to-do-card {
        position: relative;
        right: auto;
        top: 0;
        margin: 40px auto;
        width: 100%;
        max-width: 750px;
        height: auto;
        padding: 0;
    }
    
    .what-to-do-card h2 {
        font-size: 32px;
        line-height: 1.3em;
    }
    
    .what-content {
        padding: 40px 45px;
        gap: 20px;
    }
    
    .what-text {
        gap: 16px;
    }
    
    .what-text p {
        font-size: 14px;
        line-height: 1.6em;
    }
    
    .options-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 32px;
    }
    
    .option-item {
        gap: 10px;
        align-items: flex-start;
    }
    
    .option-item img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .option-item span {
        font-size: 15px;
        line-height: 1.5em;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Why Choose Us */
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us-container {
        padding: 0 40px;
    }
    
    .why-choose-us h2 {
        font-size: 32px;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 28px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 80px 40px;
    }
    
    .cards-container {
        max-width: 100%;
    }
}

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-content {
        padding: 0 40px;
    }
    
    .nav-items {
        gap: 16px;
    }
    
    .nav-items a {
        font-size: 16px;
    }
    
    .btn-secondary,
    .btn-primary-nav {
        font-size: 16px;
        padding: 8px 14px;
        width: auto;
    }
    
    /* Notification Bar */
    .notification-bar {
        height: auto;
        min-height: 30px;
        font-size: 13px;
    }
    
    .notification-bar-content {
        padding: 8px 40px;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    /* Hero Section */
    .hero-bg {
        height: 600px;
    }
    
    .hero-content {
        padding: 60px 40px 0;
        gap: 32px;
    }
    
    .hero-content h1 {
        font-size: 40px;
        max-width: 100%;
    }
    
    .hero-subtitle,
    .hero-cta-text {
        max-width: 100%;
    }
    
    .btn-primary-hero {
        width: auto;
        min-width: 180px;
        padding: 8px 16px;
        font-size: 18px;
    }
    
    /* Divisor */
    .divisor {
        width: calc(100% - 80px);
        max-width: 100%;
        height: auto;
    }
    
    .divisor-content {
        gap: 16px;
        padding: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 180px;
        padding: 14px 20px;
    }
    
    .feature-item img {
        width: 28px;
        height: 28px;
    }
    
    .feature-item p {
        font-size: 15px;
    }
    
    /* Steps Section */
    .steps-section {
        padding: 120px 40px 60px;
    }
    
    .steps-container {
        max-width: 100%;
        padding: 0 40px;
        grid-template-columns: 1fr;
        height: auto;
        gap: 40px;
    }
    
    .steps-header {
        width: 100%;
        max-width: 456px;
        margin: 0 auto;
        height: auto;
    }
    
    .steps-title {
        font-size: 32px;
    }
    
    .steps-subtitle {
        font-size: 36px;
    }
    
    .phones-image {
        grid-column: 1;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        margin-left: 0;
    }
    
    .steps-list {
        grid-column: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        align-items: flex-start;
    }
    
    .step-item {
        width: 100%;
        max-width: 100%;
    }
    
    /* What Can You Do Section */
    .what-can-you-do {
        height: auto;
        padding: 60px 0;
    }
    
    .green-bg {
        height: auto;
        min-height: 400px;
    }
    
    .man-image {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 40px;
        width: 350px;
        height: 350px;
        display: block;
    }
    
    .what-can-you-do-container {
        padding: 0 40px;
    }
    
    .what-to-do-card {
        position: relative;
        right: auto;
        top: 0;
        margin: 40px auto;
        width: 100%;
        max-width: 650px;
        height: auto;
    }
    
    /* Why Choose Us */
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us-container {
        padding: 0 40px;
    }
    
    .why-choose-us h2 {
        font-size: 32px;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 28px;
    }
    
    /* Direct Funder */
    .direct-funder {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    .direct-funder::before,
    .direct-funder::after {
        display: none;
    }
    
    .direct-funder-content {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: auto;
    }
    
    .couple-image {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 320px;
        border-radius: 16px;
        left: auto;
        top: auto;
        display: block;
        margin: 0 auto 16px;
        object-fit: cover;
        object-position: center 40%;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }
    
    .couple-image::after {
        display: none;
    }
    
    .direct-funder-text {
        max-width: 100%;
        align-items: center;
        padding: 40px;
    }
    
    .direct-funder-text h2 {
        font-size: 26px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 80px 40px;
    }
    
    .testimonials-title {
        font-size: 26px;
    }
    
    .cards-container {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .testimonial-card {
        flex: 1 1 100%;
        min-width: 280px;
    }
    
    /* Footer */
    .footer {
        height: auto;
        min-height: 264px;
    }
    
    .footer-content {
        height: auto;
        padding: 40px;
    }
    
    .footer-logo {
        left: 40px;
    }
    
    .footer-menu {
        right: 40px;
    }
    
    .footer-phone {
        left: 40px;
    }
    
    .btn-primary-footer {
        left: 40px;
    }
    
    .footer-divider {
        left: 40px;
        width: calc(100% - 80px);
    }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .navigation {
        position: sticky;
        top: 0;
        height: 70px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-content {
        padding: 0 20px;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        height: 70px;
    }
    
    .logo {
        width: 130px;
        height: auto;
    }
    
    /* Show hamburger button */
    .hamburger-btn {
        display: flex;
        order: 1;
    }
    
    /* Show mobile CTA button */
    .btn-mobile-cta {
        display: block;
        order: 2;
    }
    
    /* Transform nav-items into slide-out menu */
    .nav-items {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 40px 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Show menu when active */
    .nav-items.active {
        right: 0;
    }
    
    .nav-items a {
        font-size: 18px;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: padding-left 0.3s ease;
    }
    
    .nav-items a:hover {
        padding-left: 10px;
        opacity: 1;
    }
    
    .spacer {
        display: none;
    }
    
    .btn-secondary,
    .btn-primary-nav {
        font-size: 16px;
        padding: 10px 18px;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    
    /* Notification Bar */
    .notification-bar {
        height: auto;
        min-height: 30px;
        font-size: 11px;
    }
    
    .notification-bar-content {
        padding: 8px 20px;
        gap: 12px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .notification-bar-content span {
        flex-shrink: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Hero Section */
    .hero-bg {
        height: auto;
        min-height: 500px;
        background-size: cover;
        background-position: center center;
    }
    
    /* Add dark overlay for better text readability on tablet */
    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
        z-index: 1;
    }
    
    .hero-content {
        padding: 40px 20px;
        height: auto;
        min-height: 560px;
        gap: 28px;
        position: relative;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3em;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
                     0 3px 12px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .hero-cta-text {
        font-size: 18px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .btn-primary-hero {
        width: auto;
        min-width: 180px;
        max-width: 100%;
        padding: 8px 16px;
        font-size: 18px;
    }
    
    /* Divisor */
    .divisor {
        position: absolute;
        bottom: -55px;
        width: calc(100% - 40px);
        height: auto;
        max-height: none;
        padding: 0;
    }
    
    .divisor-content {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 12px 8px;
        background: #FFFFFF;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    .feature-item:nth-child(3) {
        display: flex;
    }
    
    .feature-item img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .feature-item p {
        font-size: 11px;
        line-height: 1.2;
        margin: 0;
        font-weight: 500;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Hide the 'Up to $250,000 in funding' box on mobile (first item) */
    .divisor-content .feature-item:first-child {
        display: none;
    }
    
    /* Steps Section */
    .steps-section {
        padding: 80px 20px 40px;
        margin-top: 30px;
    }
    
    .steps-container {
        padding: 0 20px;
        gap: 32px;
    }
    
    .steps-header {
        text-align: center;
        position: relative;
    }
    
    .steps-title {
        font-size: 26px;
        margin-left: 0;
    }
    
    .steps-subtitle {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
        position: relative;
        z-index: 2;
        font-weight: 700;
        -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.02em;
    }
    
    .tint-bg {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        z-index: 1;
        width: 300px;
        height: 75px;
    }
    
    .phones-image {
        max-width: 320px;
    }
    
    .step-item h3 {
        font-size: 18px;
    }
    
    .step-item p {
        font-size: 16px;
    }
    
    /* What Can You Do Section */
    .what-can-you-do {
        margin-top: 60px;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    .green-bg {
        position: absolute;
        min-height: 300px;
        z-index: 1;
        top: 0;
    }
    
    .man-image {
        width: 280px;
        height: 280px;
        margin-bottom: 30px;
        margin-top: 0;
        position: relative;
        z-index: 2;
    }
    
    /* Mobile Creative Elements for Tablet */
    .mobile-decorations {
        display: block;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        width: 100%;
        height: 320px;
        z-index: 3;
        pointer-events: none;
    }
    
    .floating-badge {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 10px;
        background: #FFFFFF;
        padding: 12px 16px;
        border-radius: 14px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        animation: float 3s ease-in-out infinite;
        pointer-events: auto;
    }
    
    .badge-icon {
        width: 36px;
        height: 36px;
        background: #4CAF50;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
        flex-shrink: 0;
        font-weight: bold;
    }
    
    .badge-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    
    .badge-number {
        font-size: 16px;
        font-weight: 700;
        color: #000000;
        line-height: 1;
    }
    
    .badge-label {
        font-size: 11px;
        font-weight: 400;
        color: #666666;
        line-height: 1;
    }
    
    /* Position badges for tablet */
    .badge-1 {
        top: 30px;
        left: 20px;
        animation-delay: 0s;
    }
    
    .badge-2 {
        top: 120px;
        right: 20px;
        animation-delay: 1s;
    }
    
    .badge-3 {
        top: 210px;
        left: 25px;
        animation-delay: 2s;
    }
    
    /* Decorative circles for tablet */
    .decorative-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
        animation: pulse 4s ease-in-out infinite;
    }
    
    .circle-1 {
        width: 100px;
        height: 100px;
        background: #4CAF50;
        top: 70px;
        right: 30px;
        animation-delay: 0.5s;
    }
    
    .circle-2 {
        width: 75px;
        height: 75px;
        background: #2E7D32;
        top: 220px;
        right: 80px;
        animation-delay: 1.5s;
    }
    
    .what-can-you-do-container {
        padding: 0 20px;
    }
    
    .what-to-do-card {
        width: 100%;
        right: auto;
        padding: 0;
    }
    
    .what-content {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .what-text h2 {
        font-size: 24px;
    }
    
    .what-text p {
        font-size: 13px;
    }
    
    .options-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }
    
    .option-item span {
        font-size: 14px;
    }
    
    /* Why Choose Us */
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-us-container {
        padding: 0 20px;
    }
    
    .why-choose-us h2 {
        font-size: 26px;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefit-item {
        padding: 24px;
        align-items: center;
        text-align: center;
    }
    
    .benefit-item img {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 8px;
    }
    
    .benefit-text {
        text-align: center;
    }
    
    .benefit-text h3 {
        font-size: 17px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    /* Direct Funder */
    .direct-funder {
        padding: 0;
        min-height: auto;
    }
    
    .direct-funder::before,
    .direct-funder::after {
        display: none;
    }
    
    .footer-bg {
        display: none;
    }
    
    .direct-funder-text {
        padding: 28px;
    }
    
    .direct-funder-text h3 {
        font-size: 16px;
    }
    
    .direct-funder-text h2 {
        font-size: 22px;
    }
    
    .direct-funder-text p {
        font-size: 13px;
    }
    
    .couple-image {
        position: relative;
        width: 100%;
        max-width: 360px;
        height: 240px;
        border-radius: 14px;
        left: auto;
        top: auto;
        display: block;
        margin: 0 auto 12px;
        object-fit: cover;
        object-position: center 40%;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .couple-image::after {
        display: none;
    }
    
    .direct-funder-content {
        padding: 40px 20px;
        min-height: auto;
        justify-content: center;
    }
    
    .direct-funder-text {
        padding: 32px;
    }
    
    .btn-primary {
        width: auto;
        padding: 8px 14px;
        color: #FFFFFF;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 22px;
    }
    
    .testimonial-card {
        padding: 24px;
        gap: 32px;
    }
    
    .testimonial-card h3 {
        font-size: 20px;
    }
    
    .testimonial-text .name,
    .testimonial-text .quote {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        height: auto;
        padding: 40px 20px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        height: auto;
        padding: 20px;
    }
    
    .footer-logo {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    
    .btn-primary-footer {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        max-width: 100%;
        order: 1;
        color: #FFFFFF;
    }
    
    .footer-phone {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
        order: 2;
    }
    
    .footer-divider {
        position: relative;
        left: 0;
        width: 100%;
        order: 3;
        margin: 20px 0;
    }
    
    .footer-menu {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        align-items: center;
        order: 4;
    }
    
    .menu-title,
    .footer-menu a {
        text-align: center;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    /* Notification Bar - Mobile Optimized */
    .notification-bar {
        height: auto;
        min-height: 28px;
        font-size: 11px;
    }
    
    .notification-bar-content {
        padding: 6px 20px;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }
    
    .notification-bar-content span {
        flex-shrink: 1;
        display: inline-block;
    }
    
    /* Hide "No impact to Credit Score" text on mobile */
    .notification-bar .lighter {
        display: none;
    }
    
    .notification-bar .phone {
        white-space: nowrap;
    }
    
    /* Navigation - Smaller Mobile */
    .navigation {
        height: 60px;
    }
    
    .nav-content {
        height: 60px;
        padding: 0 16px;
    }
    
    .logo {
        width: 110px;
        height: auto;
    }
    
    .hamburger-btn {
        width: 28px;
        height: 24px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .btn-mobile-cta {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    /* Slide-out menu adjustments */
    .nav-items {
        top: 60px;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 60px);
        padding: 30px 24px;
    }
    
    .nav-items a {
        font-size: 16px;
        padding: 14px 0;
    }
    
    .btn-secondary,
    .btn-primary-nav {
        font-size: 15px;
        padding: 8px 16px;
    }
    
    /* Hero Section */
    .hero-bg {
        background-size: cover;
        background-position: right center;
    }
    
    /* Add dark overlay for better text readability on mobile */
    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%
        );
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size: 26px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
                     0 4px 16px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 17px;
        font-weight: 400;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        line-height: 1.5em;
    }
    
    .hero-cta-text {
        display: none;
        font-size: 17px;
        font-weight: 400;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        line-height: 1.5em;
    }
    
    .btn-primary-hero {
        width: auto;
        min-width: 160px;
        max-width: 100%;
        font-size: 18px;
        padding: 8px 16px;
        display: flex;
        margin: 60px auto 0 auto;  /* This centers it horizontally */
    }
    
    /* Divisor - Smaller Mobile */
    .divisor {
        width: calc(100% - 32px);
        bottom: -50px;
        max-height: none;
    }
    
    .divisor-content {
        padding: 10px;
        gap: 6px;
    }
    
    .feature-item {
        gap: 4px;
        max-width: none;
        padding: 10px 6px;
        border-radius: 6px;
    }
    
    .feature-item img {
        width: 20px;
        height: 20px;
    }
    
    .feature-item p {
        font-size: 9.5px;
        line-height: 1.2;
        font-weight: 500;
    }
    
    /* Steps Section */
    .steps-title {
        font-size: 22px;
    }
    
    .steps-subtitle {
        font-size: 30px;
        position: relative;
        z-index: 2;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #000000;
        -webkit-text-stroke: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        opacity: 0.95;
    }
    
    .tint-bg {
        width: 260px;
        height: 65px;
        bottom: -18px;
    }
    
    .phones-image {
        max-width: 280px;
        margin-left: auto;
    }
    
    .step-item h3 {
        font-size: 16px;
    }
    
    .step-item p {
        font-size: 14px;
    }
    
    /* What Can You Do Section */
    .what-can-you-do {
        margin-top: 0;
        position: relative;
    }
    
    .green-bg {
        top: 0;
    }
    
    .man-image {
        width: 250px;
        height: 250px;
        position: relative;
        z-index: 2;
        margin-top: 10px;
    }
    
    /* Mobile Creative Elements */
    .mobile-decorations {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 300px;
        z-index: 3;
        pointer-events: none;
    }
    
    .floating-badge {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 8px;
        background: #FFFFFF;
        padding: 10px 14px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        animation: float 3s ease-in-out infinite;
        pointer-events: auto;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
        background: #4CAF50;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: white;
        flex-shrink: 0;
        font-weight: bold;
    }
    
    .badge-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .badge-number {
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        line-height: 1;
    }
    
    .badge-label {
        font-size: 10px;
        font-weight: 400;
        color: #666666;
        line-height: 1;
    }
    
    /* Position each badge */
    .badge-1 {
        top: 20px;
        left: 10px;
        animation-delay: 0s;
    }
    
    .badge-2 {
        top: 100px;
        right: 10px;
        animation-delay: 1s;
    }
    
    .badge-3 {
        top: 180px;
        left: 15px;
        animation-delay: 2s;
    }
    
    /* Decorative circles */
    .decorative-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
        animation: pulse 4s ease-in-out infinite;
    }
    
    .circle-1 {
        width: 80px;
        height: 80px;
        background: #4CAF50;
        top: 60px;
        right: 20px;
        animation-delay: 0.5s;
    }
    
    .circle-2 {
        width: 60px;
        height: 60px;
        background: #2E7D32;
        top: 200px;
        right: 60px;
        animation-delay: 1.5s;
    }
    
    /* Animations */
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.15;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.25;
        }
    }
    
    .what-text h2 {
        font-size: 20px;
    }
    
    .what-text p {
        font-size: 12px;
    }
    
    .options-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .option-item img {
        width: 20px;
        height: 20px;
    }
    
    .option-item span {
        font-size: 13px;
    }
    
    /* Why Choose Us */
    .why-choose-us h2 {
        font-size: 22px;
    }
    
    .benefits-container {
        gap: 12px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item img {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px;
    }
    
    .benefit-text h3 {
        font-size: 16px;
    }
    
    .benefit-text p {
        font-size: 13px;
    }
    
    /* Direct Funder */
    .couple-image {
        position: relative;
        width: 100%;
        max-width: 320px;
        height: 300px;
        border-radius: 20px;
        left: auto;
        top: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .couple-image::after {
        display: none;
    }
    
    .direct-funder-text {
        padding: 28px;
        gap: 24px;
    }
    
    .direct-funder-text h3 {
        font-size: 14px;
    }
    
    .direct-funder-text h2 {
        font-size: 20px;
    }
    
    .direct-funder-text p {
        font-size: 12px;
    }
    
    .btn-primary {
        width: auto;
        padding: 8px 14px;
        color: #FFFFFF;
    }
    
    /* Testimonials */
    .testimonials-title {
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        gap: 24px;
    }
    
    .testimonial-card h3 {
        font-size: 18px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text .name,
    .testimonial-text .quote {
        font-size: 13px;
    }
    
    /* Footer */
    .footer-logo {
        width: 130px;
        height: auto;
    }
    
    .btn-primary-footer {
        width: auto;
        max-width: 100%;
        font-size: 16px;
        color: #FFFFFF;
    }
    
    .footer-phone {
        font-size: 14px;
    }
    
    .menu-title,
    .footer-menu a {
        font-size: 14px;
    }
}

/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* Hero Section About - Optimized Layout with Green Background */
.hero-about {
    position: relative;
    width: 100%;
    height: 325px;
    overflow: hidden;
    background: #2CCE80;
}

.hero-about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 100%;
}

/* Decorative background SVG - Full width left side */
.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 325px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Team photo - Aligned to right edge, larger display */
.hero-about-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 325px;
    object-fit: cover;
    z-index: 2;
}

/* Hide original SVG vector */
.hero-vector {
    display: none;
}

/* Modern diagonal transition overlay - Quick fade, less image coverage */
.hero-about-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 325px;
    z-index: 3;
    background: linear-gradient(
        105deg,
        #2CCE80 0%,
        #2CCE80 20%,
        rgba(44, 206, 128, 0.7) 40%,
        rgba(44, 206, 128, 0.4) 60%,
        rgba(44, 206, 128, 0.15) 80%,
        transparent 100%
    );
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    pointer-events: none;
}

/* Green rectangle strip - Separator between content and image */
.hero-about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 600px;
    width: 14px;
    height: 325px;
    background: #2CCE80;
    z-index: 4;
}

/* Content container - Left side with proper spacing */
.hero-about-content {
    position: relative;
    max-width: var(--page-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 76px var(--page-padding-horizontal) 0;
    display: flex;
    align-items: flex-start;
    z-index: 5;
}

/* Page title - Constrained to left side, away from image */
.page-title-about {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 750px;
    width: 100%;
}

/* H1 - Large bold title (Black text on green background) */
.page-title-about h1 {
    max-width: 700px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

/* Subtitle - Readable width (Gray text on green background) */
.subtitle-large {
    max-width: 650px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #454545;
    margin: 0;
}

/* Bold text - Supporting statement (Black text on green background) */
.subtitle-bold {
    max-width: 700px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}

/* Key Advantages Section - White Background (Figma Match) */
.key-advantages {
    position: relative;
    width: 100%;
    padding: 37px 0;
    margin: 0;
    background: #FFFFFF;
}

.green-bg-about {
    display: none;
}

.key-advantages-content {
    position: relative;
    max-width: var(--page-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.key-advantages-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2102272245619032em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
    width: 100%;
}

.advantages-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 123px;
    width: 100%;
    max-width: 1248.64px;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
}

.advantage-card:nth-child(1) {
    gap: 8px;
}

.advantage-card:nth-child(2) {
    gap: 7px;
}

.advantage-card:nth-child(3) {
    gap: 7px;
}

.advantage-card img {
    width: 80px;
    height: 80px;
}

.advantage-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    gap: 4px;
    height: 94px;
}

.advantage-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
    color: #000000;
    width: 340px;
}

.advantage-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    text-align: center;
    color: #828282;
    width: 340px;
}

/* Mission Section */
/* Mission Section - Enhanced Card Design */
.mission-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FFFE 100%);
    position: relative;
}

.mission-content {
    max-width: var(--page-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Card-style columns with modern design */
.mission-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 616px;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(44, 206, 128, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect for cards */
.mission-column:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(44, 206, 128, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 206, 128, 0.2);
}

/* Decorative corner accent */
.mission-column::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 0%, rgba(44, 206, 128, 0.05) 100%);
    border-radius: 0 20px 0 100%;
    transition: all 0.4s ease;
}

.mission-column:hover::before {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, transparent 0%, rgba(44, 206, 128, 0.08) 100%);
}

.mission-column h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.4em;
    color: #000000;
    position: relative;
    z-index: 2;
    margin-bottom: 4px;
}

/* Add subtle green underline accent */
.mission-column h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2CCE80 0%, transparent 100%);
    margin-top: 12px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.mission-column:hover h2::after {
    width: 80px;
}

.mission-column p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65em;
    color: #454545;
    position: relative;
    z-index: 2;
}

/* CTA About Section - Enhanced & Modern */
.cta-about {
    position: relative;
    width: 100%;
    height: 364px;
    overflow: hidden;
}

.cta-about-container {
    position: relative;
    max-width: var(--page-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 2;
}

/* Subtle gradient background for depth */
.cta-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F3FFF9 0%, #E8FFF4 100%);
    z-index: 1;
}

/* Decorative accent shape - top right */
.cta-about-bg::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 206, 128, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Decorative accent shape - bottom left */
.cta-about-bg::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 480px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(44, 206, 128, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Image with hover effect and better shadow - Aligned with right margin */
.cta-about-image {
    position: relative;
    width: 406px;
    height: 284px;
    flex-shrink: 0;
    border-radius: 15px;
    object-fit: cover;
    margin-left: auto;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-about-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Content with better positioning - Left aligned */
.cta-about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 650px;
}

/* Text wrapper for better grouping */
.cta-about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
}

/* Title styling */
.cta-about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2em;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0;
    text-align: left;
}

/* Text with subtle shadow for depth */
.cta-about-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: #4A5568;
    margin: 0;
    text-align: left;
}

/* Buttons container with better alignment */
.cta-about-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

/* Primary CTA button - Green background with white text */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #2CCE80 !important;
    color: #FFFFFF !important;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
}

.btn-cta-primary:hover {
    background: #25b870 !important;
    border-color: #25b870;
    color: #FFFFFF !important;
    text-decoration: none;
}

.btn-cta-primary:active,
.btn-cta-primary:focus {
    text-decoration: none;
    outline: none;
}

/* Secondary CTA button - No background with black text */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: transparent !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
}

.btn-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    text-decoration: none;
    color: #000000 !important;
}

.btn-cta-secondary:active,
.btn-cta-secondary:focus {
    text-decoration: none;
    outline: none;
}

/* Legacy button styles (kept for compatibility) */
.btn-text-about {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.33em;
    letter-spacing: 0.83%;
    color: #000000;
    cursor: pointer;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.btn-text-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2CCE80;
    transition: width 0.3s ease;
}

.btn-text-about:hover {
    color: #2CCE80;
}

.btn-text-about:hover::after {
    width: 100%;
}

.cta-about .btn-primary {
    box-shadow: 
        0 4px 14px rgba(44, 206, 128, 0.25),
        0 1px 3px rgba(44, 206, 128, 0.15);
    transition: all 0.3s ease;
}

.cta-about .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(44, 206, 128, 0.35),
        0 3px 8px rgba(44, 206, 128, 0.2);
}

/* ============================================================
   ABOUT US PAGE - RESPONSIVE STYLES
   ============================================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Hero About Section */
    .hero-about {
        height: auto;
        min-height: 400px;
    }
    
    .hero-about-bg {
        width: 100%;
    }
    
    .hero-about-bg::before {
        width: 180px;
    }
    
    .hero-about-content {
        padding: 60px 40px;
    }
    
    .page-title-about {
        max-width: 100%;
    }
    
    .page-title-about h1 {
        max-width: 100%;
        font-size: 32px;
    }
    
    .subtitle-large {
        max-width: 100%;
        font-size: 16px;
    }
    
    .subtitle-bold {
        max-width: 100%;
        font-size: 18px;
    }
    
    /* Mission Section */
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-content {
        flex-direction: column;
        padding: 0 40px;
        gap: 32px;
    }
    
    .mission-column {
        max-width: 100%;
        padding: 32px;
    }
    
    .mission-column h2 {
        font-size: 24px;
    }
    
    .mission-column p {
        font-size: 16px;
    }
    
    /* Key Advantages */
    .key-advantages {
        padding: 40px 0;
    }
    
    .key-advantages-content {
        padding: 0 40px;
    }
    
    .advantages-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .advantage-card {
        width: 100%;
        max-width: 400px;
    }
    
    /* CTA Section */
    .cta-about {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }
    
    .cta-about-container {
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-about-image {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
        width: 80%;
        max-width: 400px;
        margin-bottom: 40px;
    }
    
    .cta-about-content {
        position: relative;
        right: auto;
        left: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .cta-about-text-wrapper {
        text-align: center;
    }
    
    .cta-about-title {
        font-size: 32px;
        text-align: center;
    }
    
    .cta-about-text {
        text-align: center;
        font-size: 16px;
    }
    
    .cta-about-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 16px;
        padding: 8px 14px;
        width: auto;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero About Section - Modern Mobile Design */
    .hero-about {
        min-height: auto;
        background: linear-gradient(180deg, #FFFFFF 0%, #F9FFFE 100%);
        padding: 50px 0 60px;
    }
    
    /* Hide desktop green strip and decorative elements */
    .hero-about::after {
        display: none;
    }
    
    .hero-decorative {
        display: none;
    }
    
    /* Image container - Center and card style */
    .hero-about-bg {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: calc(100% - 40px);
        max-width: 340px;
        height: 280px;
        margin: 0 auto 40px;
        order: 1;
    }
    
    /* Image - Modern card with gradient border effect */
    .hero-about-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        box-shadow: 
            0 20px 50px rgba(44, 206, 128, 0.15),
            0 10px 25px rgba(0, 0, 0, 0.08);
        border: 3px solid transparent;
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(135deg, #2CCE80 0%, #25b870 100%) border-box;
    }
    
    /* Green badge removed for cleaner look */
    .hero-about-bg::before {
        display: none;
    }
    
    /* Content - Stacked and centered */
    .hero-about-content {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 5;
    }
    
    /* Text container */
    .page-title-about {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        order: 2;
    }
    
    /* Main title with gradient accent */
    .page-title-about h1 {
        font-size: 32px;
        line-height: 1.25;
        color: #000000;
        font-weight: 700;
        margin: 0;
        position: relative;
    }
    
    /* Add subtle underline accent */
    .page-title-about h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #2CCE80 0%, transparent 100%);
        margin: 16px auto 0;
        border-radius: 2px;
    }
    
    /* Subtitles - Better spacing and readability */
    .subtitle-large {
        font-size: 16px;
        line-height: 1.6;
        color: #454545;
        margin: 0;
    }
    
    .subtitle-bold {
        font-size: 17px;
        line-height: 1.5;
        color: #000000;
        font-weight: 600;
        margin: 8px 0 0;
    }
    
    /* Add decorative elements for visual interest */
    .hero-about::before {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(44, 206, 128, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }
    
    /* Mission Section */
    .mission-section {
        padding: 50px 0;
    }
    
    .mission-content {
        padding: 0 20px;
        gap: 24px;
    }
    
    .mission-column {
        padding: 28px 24px;
        border-radius: 16px;
    }
    
    .mission-column h2 {
        font-size: 22px;
    }
    
    .mission-column h2::after {
        width: 40px;
        margin-top: 10px;
    }
    
    .mission-column:hover h2::after {
        width: 60px;
    }
    
    .mission-column p {
        font-size: 16px;
        line-height: 1.6em;
    }
    
    /* Key Advantages */
    .key-advantages {
        padding: 30px 0;
    }
    
    .key-advantages-content {
        padding: 0 20px;
    }
    
    .key-advantages-content h2 {
        font-size: 28px;
    }
    
    .advantages-grid {
        gap: 32px;
    }
    
    .advantage-card {
        max-width: 100%;
    }
    
    .advantage-card img {
        width: 64px;
        height: 64px;
    }
    
    .advantage-text {
        height: auto;
    }
    
    .advantage-text h3 {
        font-size: 16px;
        width: 100%;
    }
    
    .advantage-text p {
        font-size: 13px;
        width: 100%;
    }
    
    /* CTA Section */
    .cta-about {
        min-height: auto;
        padding: 40px 0;
    }
    
    .cta-about-bg::before,
    .cta-about-bg::after {
        display: none;
    }
    
    .cta-about-container {
        padding: 0 20px;
    }
    
    .cta-about-image {
        width: 90%;
        height: auto;
        margin-bottom: 32px;
    }
    
    .cta-about-content {
        padding: 0;
        gap: 32px;
    }
    
    .cta-about-title {
        font-size: 26px;
    }
    
    .cta-about-text {
        font-size: 15px;
        line-height: 1.5em;
    }
    
    .cta-about-buttons {
        gap: 10px;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 15px;
        padding: 8px 16px;
        width: 100%;
    }
}

/* ============================================================
   APPLY FORM PAGE STYLES
   ============================================================ */

/* Apply Page Wrapper */
.page-apply {
    background: #FFFFFF;
    min-height: 100vh;
}

.apply-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.apply-header {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-bottom: 1px solid #E6E6E6;
}

.apply-header-content {
    max-width: var(--page-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apply-logo {
    width: 113px;
    height: 30px;
}

.apply-help {
    text-align: right;
}

.apply-help p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: #FFFFFF;
}

.progress-bar {
    display: flex;
    width: 100%;
    height: 100%;
}

.progress-step {
    flex: 1;
    height: 100%;
    background: #E6E6E6;
    transition: background 0.3s ease;
}

.progress-step.active {
    background: #2CCE80;
}

/* Content Area */
.apply-content {
    flex: 1;
    width: 100%;
    padding: 117px 0;
    display: flex;
    justify-content: center;
}

/* Form Container */
.apply-form {
    width: 650px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form Header */
.form-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 8px;
}

.form-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.21em;
    letter-spacing: -0.02em;
    color: #000000;
    text-align: center;
    margin: 0;
}

.form-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #828282;
    margin: 0;
}

.form-description-small {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4em;
    color: #757575;
    margin: 0 0 8px 0;
}

/* Section Title */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4em;
    color: #1E1E1E;
    margin: 0;
    padding-top: 8px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #1E1E1E;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2CCE80;
    box-shadow: 0 0 0 3px rgba(44, 206, 128, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%231E1E1E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    color: #000000;
}

.form-group select:invalid {
    color: #B3B3B3;
}

.form-group select:valid {
    color: #000000;
}

/* Checkbox Group */
.form-group-checkbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #1E1E1E;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #757575;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkbox-custom {
    border-color: #2CCE80;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom {
    background: #2CCE80;
    border-color: #2CCE80;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:focus ~ .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(44, 206, 128, 0.1);
}

.checkbox-label {
    user-select: none;
}

.checkbox-large .checkbox-label {
    font-size: 16px;
    line-height: 1.4em;
}

/* Textarea Styling */
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea::placeholder {
    color: #B3B3B3;
}

.form-group textarea:focus {
    outline: none;
    border-color: #2CCE80;
    box-shadow: 0 0 0 3px rgba(44, 206, 128, 0.1);
}

.form-group textarea:invalid {
    border-color: #D9D9D9;
}

/* Authorization Text */
.authorization-text {
    margin-bottom: 8px;
}

/* Signature Info Display */
.signature-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

.owner-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #828282;
    margin: 0;
    transition: color 0.3s ease;
}

.signature-date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #000000;
    margin: 0;
}

.signature-date span {
    display: inline-block;
    margin-top: 2px;
}

/* Info Box (Step 5) */
.info-box {
    width: 100%;
    background: #F2F2F2;
    border-radius: 8px;
    padding: 19px 25px;
    margin: 0;
}

.info-box-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #828282;
    margin: 0 0 16px 0;
}

.info-box-text:last-child {
    margin-bottom: 0;
}

.info-box-text strong {
    font-weight: 600;
    color: #828282;
    display: block;
    margin-bottom: 4px;
}

/* Disclaimer Text */
.disclaimer-text {
    margin-top: 0;
    margin-bottom: 0;
}

/* Alternative Action */
.alternative-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    width: 100%;
}

.alternative-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #000000;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alternative-link:hover {
    color: #2CCE80;
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    width: 100%;
    margin-top: 8px;
}

.btn-apply-primary {
    width: 100%;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1em;
    color: #000000;
    background: #2CCE80;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-primary:hover {
    background: #25b870;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 206, 128, 0.3);
}

.btn-apply-primary:active {
    transform: translateY(0);
}

/* ============================================================
   APPLY FORM - RESPONSIVE STYLES
   ============================================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .apply-header-content {
        padding: 0 40px;
    }

    .apply-logo {
        width: 100px;
        height: auto;
    }

    .apply-help p {
        font-size: 12px;
    }

    .apply-content {
        padding: 60px 40px;
    }

    .apply-form {
        width: 100%;
        max-width: 600px;
    }

    .form-header h1 {
        font-size: 26px;
    }

    .form-description {
        font-size: 13px;
    }

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

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .apply-header-content {
        padding: 0 20px;
    }

    .apply-logo {
        width: 90px;
    }

    .apply-help p {
        font-size: 11px;
        line-height: 1.3em;
    }

    .apply-content {
        padding: 40px 20px;
    }

    .apply-form {
        padding: 20px;
        gap: 14px;
    }

    .form-header {
        gap: 20px;
    }

    .form-header h1 {
        font-size: 24px;
    }

    .form-description {
        font-size: 13px;
    }

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

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
        padding: 10px 14px;
    }

    .btn-apply-primary {
        padding: 14px 12px;
        font-size: 16px;
    }
}

/* ============================================
   ISOs PAGE STYLES
   ============================================ */

.page-isos {
    background: #FFFFFF;
}

.container-isos {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
}

/* ISO Hero Section */
.isos-hero {
    background: linear-gradient(180deg, #F6FBF8 0%, #F3F7F5 100%);
    padding: 80px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.isos-hero-logo-pattern {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-decorative-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
}

.isos-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.isos-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.isos-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal);
}

.isos-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
}

.isos-hero-text {
    max-width: 760px;
}

.isos-hero-visual {
    position: relative;
    max-width: 520px;
    margin: 0 0 0 auto;
}

.isos-hero-visual::before {
    content: '';
    position: absolute;
    inset: -8% -8% -8% -8%;
    background: radial-gradient(60% 60% at 70% 30%, rgba(44, 206, 128, 0.15) 0%, rgba(44, 206, 128, 0) 60%);
    z-index: 0;
    filter: blur(2px);
}

.hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 1;
    transform: translateZ(0);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    pointer-events: none;
}

.isos-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.isos-hero-card {
    display: inline-block;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #E8EAEC;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    -webkit-backdrop-filter: blur(4px) saturate(120%);
    backdrop-filter: blur(4px) saturate(120%);
}

/* Improve text clarity slightly on textured background */
.isos-hero-content h1,
.isos-hero-content .isos-subtitle {
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.isos-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.isos-hero-content h1::after { display: none; }

.isos-subtitle {
    font-size: 18px;
    color: #4A4A4A;
    margin-bottom: 28px;
    max-width: 720px;
    line-height: 1.6;
}

.btn-primary-large {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #2CCE80;
    color: #FFFFFF;
    padding: 8px 16px;
    border: 2px solid #2CCE80;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    transition: all 0.3s;
    width: auto;
    height: auto;
}

.btn-primary-large:hover {
    background: #25b870;
    border-color: #25b870;
    color: #FFFFFF;
    text-decoration: none;
}

/* Promise Section */
.isos-promise {
    padding: 68px 0;
    background: #FFFFFF;
}

.promise-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.promise-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 0;
}

.promise-header h2::after { display: none; }

.promise-header p {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 16px;
}

.promise-statement {
    background: linear-gradient(to right, #F0FDF4 0%, #DCFCE7 100%);
    border-left: 6px solid #27AE60;
    padding: 32px 40px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.promise-statement p {
    font-size: 18px;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.isos-stats {
    padding: 68px 0;
    background: #FAFAFA;
}

.isos-stats h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 0;
}

.isos-stats h2::after { display: none; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.stat-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.15);
    border-color: #27AE60;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.6;
}

/* Tools Section */
.isos-tools {
    padding: 68px 0;
    background: #FFFFFF;
}

.isos-tools h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 0;
}

.isos-tools h2::after { display: none; }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.tool-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 8px 0;
    background: transparent;
    border-radius: 0;
    transition: color 0.2s ease;
    border: none;
    box-shadow: none;
}

.tool-item:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: none;
    grid-row: 1 / span 2;
    grid-column: 1;
}

.tool-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 2px 0 6px 0;
    line-height: 1.4;
    grid-column: 2;
}

.tool-item p {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
    grid-column: 2;
}

/* Requirements Section */
.isos-requirements {
    padding: 68px 0;
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
}

.isos-requirements h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 0;
}

.isos-requirements h2::after { display: none; }

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.requirement-card {
    background: #FFFFFF;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E0E0E0;
    transition: all 0.3s;
}

.requirement-card:hover {
    border-color: #27AE60;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.1);
}

/* Logo pattern background similar to hero */
.isos-requirements::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-decorative-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.requirement-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 96, 0.3);
    margin-bottom: 16px;
}

.requirement-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.requirement-card p {
    font-size: 16px;
    color: #4A4A4A;
}

/* Testimonial Section */
.isos-testimonial {
    padding: 80px 0;
    background: #27AE60;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote p {
    font-size: 24px;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 24px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.9;
}

/* CTA Section */
.isos-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    position: relative;
    overflow: hidden;
}

.isos-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #2CCE80;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #2CCE80;
    width: auto;
    height: auto;
}

.btn-cta-primary:hover {
    background: #25b870;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #FFFFFF;
    width: auto;
    height: auto;
}

.btn-cta-secondary:hover {
    background: #FFFFFF;
    color: #2CCE80;
    text-decoration: none;
}

.cta-email {
    margin-top: 24px;
}

.cta-email p {
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.9;
}

.cta-email a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cta-email a:hover {
    opacity: 0.8;
}

/* Disclaimer Section */
.isos-disclaimer {
    padding: 60px 0;
    background: #F8F9FA;
}

.isos-disclaimer h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

.isos-disclaimer p {
    font-size: 12px;
    color: #828282;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ISOs Page Footer Overrides */
.page-isos .footer {
    background: #1a1a1a;
    padding: 60px 0 0;
    height: auto;
}

.page-isos .footer-content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-horizontal) 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    height: auto;
    position: relative;
}

.page-isos .footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-isos .footer-logo {
    width: 180px;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
}

.page-isos .footer-tagline {
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 16px;
    margin: 0;
}

.page-isos .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.page-isos .footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-isos .footer-column h3 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-isos .footer-column a {
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-isos .footer-column a:hover {
    opacity: 1;
}

.page-isos .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px var(--page-padding-horizontal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--page-max-width);
    margin: 0 auto;
}

.page-isos .footer-bottom p {
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 14px;
    margin: 0;
}

.page-isos .footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.page-isos .footer-legal a {
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-isos .footer-legal a:hover {
    opacity: 1;
}

.page-isos .footer-divider {
    color: #FFFFFF;
    opacity: 0.3;
}

/* Responsive Styles for ISOs Page */
@media (max-width: 768px) {
    .isos-hero {
        padding: 48px 0 28px;
        background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url('assets/images/kpt 4.266Z.png');
        background-size: cover;
        background-position: center;
    }
    
    .isos-hero::before,
    .isos-hero::after {
        display: none;
    }
    
    .isos-hero-logo-pattern {
        display: none;
    }
    
    .isos-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .isos-hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .isos-hero-content h1 {
        color: #FFFFFF;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .isos-subtitle {
        color: #FFFFFF;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .isos-hero-visual {
        display: none;
    }
    
    .btn-primary-large {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .isos-hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .isos-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.7;
        letter-spacing: 0.2px;
    }
    
    .hero-image-frame {
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    }
    
    .isos-hero-image {
        aspect-ratio: 16 / 10;
        max-height: 220px;
        object-position: center 35%;
    }
    
    .page-isos .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 32px;
    }
    
    .page-isos .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-isos .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-isos .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .isos-hero-content h1 {
        font-size: 32px;
    }

    .isos-subtitle {
        font-size: 16px;
    }

    .btn-primary-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Global mobile button normalization */
    .btn-primary,
    .btn-primary-hero,
    .btn-primary-large,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-apply-primary,
    .btn-primary-footer,
    .btn-primary-nav,
    .btn-secondary {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 16px;
        height: auto;
        padding: 14px 16px;
        box-sizing: border-box;
        text-align: center;
    }

    .isos-promise,
    .isos-stats,
    .isos-tools,
    .isos-requirements,
    .isos-testimonial,
    .isos-cta {
        padding: 60px 0;
    }

    .promise-header h2,
    .isos-stats h2,
    .isos-tools h2,
    .isos-requirements h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .promise-statement {
        padding: 24px 20px;
    }

    .promise-statement p {
        font-size: 16px;
    }

    .stats-grid,
    .tools-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .tool-icon {
        width: 44px;
        height: 44px;
    }
    
    .requirement-card {
        padding: 24px 20px;
    }

    .testimonial-quote p {
        font-size: 18px;
    }

    .cta-content > p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .isos-hero {
        padding: 44px 0 24px;
    }
    
    .isos-hero-logo-pattern {
        display: none;
    }
    
    .isos-hero-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .isos-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .isos-promise,
    .isos-stats,
    .isos-tools,
    .isos-requirements,
    .isos-testimonial,
    .isos-cta {
        padding: 52px 0;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .tool-icon {
        width: 40px;
        height: 40px;
    }
    
    .isos-hero-image {
        aspect-ratio: 16 / 9;
        max-height: 180px;
    }
}
