/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Noto+Sans:wght@400;600&display=swap');

/* --- CSS Variables (Easy to change colors) --- */
:root {
    --primary-color: #005A9C; /* A trustworthy blue */
    --secondary-color: #1A7EBE; /* A slightly lighter blue */
    --accent-color: #F7941D; /* A warm, attention-grabbing orange for CTAs */
    --background-color: #F8F9FA; /* A very light gray for the body */
    --text-color: #333; /* Dark gray for text */
    --light-text-color: #FFF;
    --border-color: #E0E0E0;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* --- General & Reset Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--light-text-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --- Utility Classes --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #e6830d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}


/* --- Header / Navigation --- */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo .fa-home {
    margin-right: 10px;
    color: var(--secondary-color);
}

.nav a {
    color: var(--text-color);
    font-weight: 600;
    margin-left: 25px;
}

.nav a:not(.btn):hover {
    color: var(--secondary-color);
}


/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 90, 156, 0.8), rgba(0, 90, 156, 0.8)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pain-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
}

.point .fas {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-cta {
    margin-top: 1rem;
}

.trust-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}


/* --- How It Works Section --- */
.how-it-works-section {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.steps-cta {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
}


/* --- Form Section --- */
.form-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    color: var(--light-text-color);
}

.form-card {
    background-color: #fff;
    color: var(--text-color);
    max-width: 700px;
    margin: auto;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    text-align: center;
    color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(26, 126, 190, 0.2);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

.form-group-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.privacy-text {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1.5rem;
    color: #777;
}

.privacy-text a {
    color: var(--secondary-color);
    font-weight: 600;
}


/* --- Footer --- */
.footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 2.5rem 0;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav a {
        margin-left: 0;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .pain-points {
        flex-direction: column;
        align-items: center;
        gap: 1rem; /* Reduced gap for stacked items */
    }

    .how-it-works-section,
    .form-section,
    .detailed-process-section {
        padding: 3.5rem 0;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .form-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .hero-cta {
        padding: 10px 22px;
        font-size: 1rem;
    }
}