.contact-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e3a8a
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left
}

.contact-form label {
    font-weight: 600;
    color: #374151;
    display: flex;
    flex-direction: column;
    font-size: 1rem
}

.contact-form input,
.contact-form textarea {
    margin-top: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    outline-offset: 2px;
    resize: vertical;
    transition: border-color .3s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
    outline: none
}

.contact-form button {
    background-color: #2563eb;
    color: #fff;
    font-weight: 700;
    padding: 14px 0;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color .3s ease
}

.contact-form button:hover {
    background-color: #1e40af
}

@media (max-width: 480px) {
    .contact-section {
        margin: 40px 15px
    }
}

.faq {
    background-color: #f9fafb;
    padding: 80px 20px
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 50px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #0000000d;
    padding: 20px;
    cursor: pointer;
    transition: background .3s ease
}

.faq-item:hover {
    background-color: #f1f5f9
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-answer {
    font-size: 1rem;
    color: #4b5563;
    margin-top: 10px;
    display: none
}

.faq-item.active .faq-answer {
    display: block
}

.features {
    background-color: #f9fafb;
    padding: 80px 20px
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3a8a
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px #0000000d;
    transition: transform .2s ease
}

.feature-card:hover {
    transform: translateY(-5px)
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 10px
}

.feature-card p {
    color: #4b5563;
    font-size: 1rem
}

.footer {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 60px 20px 30px
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.footer-brand p {
    font-size: .95rem;
    color: #d1d5db;
    max-width: 300px
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
    font-size: 1.1rem
}

.footer-links ul {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    color: #f3f4f6;
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: #93c5fd
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: .95rem;
    color: #d1d5db
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: .9rem;
    color: #9ca3af
}

.topbar {
    background-color: #1e3a8a;
    color: #fff;
    padding: 8px 20px;
    font-size: .9rem
}

.contact-info {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center
}

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 500
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    transition: color .2s ease
}

.nav-links a:hover {
    color: #1e3a8a
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center
    }

    .navbar {
        flex-direction: column;
        gap: 10px
    }
}

.hero {
    height: 800px;
    width: 100%;
    background: linear-gradient(to right, #3b83f650, #1e3b8a6e), url(../329.jpg) center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem
}

.hero-content {
    max-width: 800px
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem
}

.hero-cta {
    background-color: #fff;
    color: #1e3a8a;
    font-weight: 700;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .3s
}

.hero-cta:hover {
    background-color: #e0e7ff
}

.how-it-works {
    background-color: #fff;
    padding: 80px 20px
}

.hiw-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px
}

.hiw-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap
}

.hiw-step {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 4px 10px #0000000d;
    transition: transform .2s ease
}

.hiw-step:hover {
    transform: translateY(-5px)
}

.step-number {
    background-color: #3b82f6;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.hiw-step h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 10px
}

.hiw-step p {
    font-size: 1rem;
    color: #4b5563
}

.newsletter {
    background-color: #1e3a8a;
    color: #fff;
    padding: 80px 20px;
    text-align: center
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 10px
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.newsletter-form input {
    padding: .75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    width: 280px;
    max-width: 100%
}

.newsletter-form button {
    padding: .75rem 1.5rem;
    background-color: #fff;
    color: #1e3a8a;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .3s
}

.newsletter-form button:hover {
    background-color: #e0e7ff
}

.offer-banner {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 80px 20px;
    text-align: center
}

.offer-content {
    max-width: 700px;
    margin: 0 auto
}

.offer-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px
}

.offer-content p {
    font-size: 1.25rem;
    margin-bottom: 30px
}

.offer-content button {
    background-color: #fff;
    color: #1e40af;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color .3s ease
}

.offer-content button:hover {
    background-color: #e0e7ff
}

.testimonials {
    background-color: #f9fafb;
    padding: 80px 20px
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 12px #0000000d;
    text-align: center
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px
}

.testimonial-text {
    font-size: 1rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 10px
}

.testimonial-name {
    font-weight: 700;
    color: #1f2937;
    font-size: .95rem
}