*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body{
    overflow-x: hidden;
}

/* Sticky CTA Button */
.sticky-cta{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta button{
    background-color: #10B981;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Hero Section */
.hero-section{
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.192), rgba(0, 0, 0, 0.164)), url('images/1002959440.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-content{
    max-width: 1400px;
    /* margin: 0 auto; */
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0 90px;
}

/* prevent text column from being squeezed on wide screens */
.hero-text{
    flex: 1;
    color: white;
    max-width: 750px;
}

/* ensure headings remain readable */
.hero-text h1{
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

/* when the viewport is tall but narrow, allow smaller heading sizes */
@media (max-width: 1024px) {
    .hero-text h1{
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .hero-text h1{
        font-size: 2em;
    }
}

.hero-text p{
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

.primary-btn{
    background-color: #10B981;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.secondary-btn{
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover{
    background-color: white;
    color: #004a75;
}

.hero-image{
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Who Section */
.who-section{
    padding: 80px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.who-section h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.who-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.who-card{
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.who-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.who-icon{
    font-size: 3em;
    color: #007bb8;
    margin-bottom: 20px;
}

.who-card h3{
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.who-card p{
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-section{
    padding: 80px 50px;
    background: linear-gradient(to right, #004a75, #007bb8);
    text-align: center;
}

.how-section h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
}

.steps-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.steps-container::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, #0076bb, #1db4ff);
    z-index: 0;
}

.step{
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number{
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #0076bb, #1db4ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 184, 0.3);
}

.step h3{
    font-size: 1.2em;
    font-weight: 700;
    color: #e4e4e4;
    margin-bottom: 10px;
}

.step p{
    font-size: 0.95em;
    color: #cfcfcf;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section{
    padding: 80px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.benefits-section h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.benefits-grid{
    max-width: 1000px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item i{
    font-size: 1.8em;
    color: #10B981;
}

.benefit-item p{
    font-size: 1em;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.highlight-box{
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #007bb8, #10B981);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 123, 184, 0.3);
}

.highlight-box p{
    font-size: 1.2em;
    color: white;
    font-weight: 600;
    line-height: 1.6;
}

/* Products Section */
.products-section{
    padding: 80px 50px;
    background-color: white;
    text-align: center;
}

.products-section h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.products-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card{
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-card:hover{
    border-color: #007bb8;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 184, 0.2);
}

.product-icon{
    font-size: 3em;
    color: #007bb8;
    margin-bottom: 20px;
}

.product-card h3{
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
}

/* Trust Section */
.trust-section{
    padding: 80px 50px;
    background-color: #e7e7e7;
}

.trust-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text{
    flex: 1;
}

.trust-text h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
}

.trust-text ul{
    list-style: none;
}

.trust-text li{
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-text li i{
    font-size: 1.3em;
    color: #10B981;
}

.trust-image{
    flex: 1;
}

.trust-image img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Requirements Section */
.requirements-section{
    padding: 80px 50px;
    background-color: white;
    text-align: center;
}

.requirements-section h2{
    font-size: 2.5em;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.requirements-list{
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.requirement-item i{
    font-size: 2em;
    color: #007bb8;
}

.requirement-item p{
    font-size: 1em;
    color: #333;
    font-weight: 500;
    text-align: left;
}

/* Final CTA Section */
.final-cta-section{
    padding: 100px 50px;
    background: linear-gradient(135deg, #333 0%, #004a75 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2{
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-section p{
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.final-cta-buttons .primary-btn{
    background-color: #10B981;
}

.final-cta-buttons .secondary-btn{
    background-color: transparent;
    border: 2px solid white;
}

/* Footer */
.partner-footer{
    background-color: #1a1a1a;
    padding: 30px;
    text-align: center;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content{
        flex-direction: column;
    }
    
    .who-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-content{
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .who-section h2, .how-section h2, .benefits-section h2, .products-section h2, .trust-text h2, .requirements-section h2, .final-cta-section h2{
        font-size: 1.7em;        
    }

    .who-section{
        padding: 50px 20px;
    }

    .hero-section{
        padding: 50px 20px;
        background-position: 10% center
    }
    
    .hero-text h1{
        font-size: 2em;
    }

    .hero-content{
        padding: 0 10px;
    }
    
    .hero-text p{
        font-size: 1em;
    }
    
    .hero-buttons{
        flex-direction: column;
    }
    
    .who-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .who-card{
        padding: 30px 20px;
    }
    
    .steps-container{
        flex-direction: column;
    }

    .products-section{
        padding: 40px 20px;
    }

    .products-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .products-section h2{
        margin-bottom: 30px;
    }

    .product-card{
        padding: 30px 20px;
    }

    .benefits-section{
        padding: 50px 20px;
        gap: 10px;
    }

    .highlight-box{
        padding: 20px;
    }

    .trust-section{
        padding: 40px 20px;
        justify-content: center;
    }

    .trust-list{
        justify-content: center;
    }
    
    .steps-container::before{
        display: none;
    }
    
    .benefits-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefits-section h2{
        margin-bottom: 30px;        
    }

    .products-grid{
        grid-template-columns: 1fr;
    }

    .requirements-section{
        padding: 50px 30px;
    }
    
    .requirements-list{
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .final-cta-buttons{
        flex-direction: column;
    }
    
    .sticky-cta{
        bottom: 10px;
        right: 10px;
    }
    
    .sticky-cta button{
        padding: 12px 25px;
        font-size: 0.9em;
    }
}