:root {
    --primary: #0047A0;
    --secondary: #CD2E3A;
    --accent: #FFD700;
    --light: #F3F7FF;
    --dark: #1A2A40;
    --text-dark: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 6px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
}

.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: #003d87;
        border-color: #003d87;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

    .btn-secondary:hover, .btn-secondary:focus {
        background-color: #b42834;
        border-color: #b42834;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover, .btn-outline-primary:focus {
        background-color: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

/* Header Styles */
.navbar {
    background-color: var(--primary);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
        color: var(--accent);
    }

.navbar-nav .nav-item.active .nav-link {
    color: var(--accent);
}

.navbar-nav .btn {
    margin-left: 0.5rem;
}

/* Free Trial Banners */
.free-trial-section {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.free-trial-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .free-trial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .free-trial-card h3 {
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .free-trial-card p {
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 71, 160, .7), rgba(0, 41, 107, .7)), url('/images/3.png') center/cover no-repeat;
    padding: 7rem 0;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.125rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-heading h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .section-heading h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-heading p {
        font-size: 1.125rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

.about-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.about-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.process-arrow {
    display: none;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
        font-size: 2rem;
        color: var(--primary);
        opacity: 0.5;
        margin-top: 1.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.benefit-card {
    display: flex;
    margin-bottom: 2rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 71, 160, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.benefit-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefits-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

    .benefits-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--shadow);
}

    .testimonial-card:before {
        content: '\201C';
        font-family: Georgia, serif;
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 5rem;
        color: rgba(0, 71, 160, 0.1);
        line-height: 1;
    }

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), #9a2129);
    color: var(--white);
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .cta-section p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

    .footer-logo img {
        height: 50px;
    }

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .benefits-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 5rem 0;
    }

        .hero-section h1 {
            font-size: 2.25rem;
        }

    .hero-cta-group {
        flex-direction: column;
    }

        .hero-cta-group .btn {
            width: 100%;
        }

    .about-section, .process-section, .benefits-section, .testimonials-section, .cta-section {
        padding: 4rem 0;
    }

    .section-heading h2 {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }

    .footer {
        padding-top: 3rem;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }
}
