html {
    font-size: 14px;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 1.2rem;
}


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

:root {
    --primary-color: #3195CA;
    --secondary-color: #003366;
    --accent-color: #ff6b00;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .nav-link {
    color: white !important;
    font-weight: 600;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        margin-right: 10px;
    }

.main-nav {
    display: flex;
    gap: 1.5rem;
}

    .main-nav a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: all 0.3s ease;
    }

        .main-nav a:hover {
            color: white;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: white;
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

.container {
    flex: 1;
}

main {
    padding: 2rem 0;
}

footer {
    background: #3195CA;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

    .footer-section h3 {
        color: var(--accent-color);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-section p, .footer-section a {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0.5rem;
        display: block;
        text-decoration: none;
    }

        .footer-section a:hover {
            color: white;
        }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        color: white;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

        .social-icons a:hover {
            transform: translateY(-3px);
            color: var(--accent-color);
        }

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

    .btn-accent:hover {
        background-color: #e05d00;
        border-color: #e05d00;
        color: white;
    }

@@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.hero-section {
    background: linear-gradient(135deg, #0056b3, #3195CA);
    padding: 1rem 0;
}

.trust-badges .badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--accent-color);
    }

.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto;
}

.bg-primary-light {
    background-color: rgba(0, 86, 179, 0.1);
}
