:root {
    --primary: #0C3B5B;
    --gold: #ff5f01;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.language-selector span {
    font-size: 14px;
}


.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(255, 95, 1, 0.7), rgba(255, 95, 1, 0.8)), url('../../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
}


h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.subheadline {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-section {
    background-color: white;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-heading {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 30px;
}   
.cta-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

li {
    color: #000;
    text-align: start;
}

.cta-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cta-option span {
    color: var(--gold);
    font-weight: bold;
}

.cta-option p {
    text-align: left;
    color: var(--dark);
}

.cta-button {
    background-color: var(--gold);
    color: var(--light);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 40px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.trust-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.trust-point {
    max-width: 300px;
}

.trust-point img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.trust-point h3 {
    color: #ff5f01;
    margin-bottom: 10px;
}

.how-it-works {
    background-color: #F0F5F9;
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.saas-features {
    padding: 80px 0;
    background-color:#ff5f01;
    color: white;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
}

.feature img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #F8F9FA;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-control {
    display: flex;
    margin-bottom: 20px;
}

.form-control input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.form-control button {
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .steps, .trust-points, .features {
        flex-direction: column;
        align-items: center;
    }
    
    .step, .trust-point, .feature {
        max-width: 100%;
    }


    header {
        /* padding: 20px 0; */
        display: flex
    ;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .social-links{
        padding: 10px 4px !important;
    }

}


.social-links {
    padding: 30px 0;
}

.social-icons-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.social-icons-list li {
    margin: 0;
}

.social-icons-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    width: 25px;
    height: 25px;
    background-color: #ff5f01;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons-list a:hover {
    background-color: #000;
    transform: translateY(-3px);
    color: #fff;
}

/* For darker backgrounds */
.footer-dark .social-icons-list a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* For lighter backgrounds */
.footer-light .social-icons-list a {
    background-color: rgba(12, 59, 91, 0.1);
    color: #0C3B5B;
}