/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f7fb;
    color: #222;
    min-height: 100vh;
}

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 48px;
    height: 48px;
}
.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #004e8f;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}
nav ul li a {
    text-decoration: none;
    color: #004e8f;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
    padding: 6px 12px;
    border-radius: 6px;
}
nav ul li a.signup-btn {
    background: linear-gradient(90deg, #2563eb 60%, #4A90E2 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 22px;
    box-shadow: 0 2px 8px rgba(38,99,235,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
nav ul li a.signup-btn:hover {
    background: linear-gradient(90deg, #1d4ed8 60%, #357ABD 100%);
    box-shadow: 0 4px 16px rgba(38,99,235,0.13);
}
nav ul li a:hover {
    color: #2563eb;
    background: #f0f6ff;
}

.hero {
    position: relative;
    min-height: 520px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('landingpageimg/coverphoto.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.tagline {
    font-size: 1.3rem;
    margin-bottom: 32px;
    color: #e0e7ef;
}
.cta-btn {
    background: linear-gradient(90deg, #2563eb 60%, #4A90E2 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 38px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(38,99,235,0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #1d4ed8 60%, #357ABD 100%);
    box-shadow: 0 4px 16px rgba(38,99,235,0.18);
    transform: translateY(-2px) scale(1.04);
}

.about-us {
    background: #fff;
    padding: 60px 30px 40px 30px;
    text-align: center;
    border-radius: 18px;
    margin: 48px auto 0 auto;
    max-width: 900px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-us h2 {
    color: #004e8f;
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: bold;
}
.about-us p {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.7;
}

.how-it-works {
    background: #f2f7fb;
    padding: 60px 30px 40px 30px;
    text-align: center;
    border-radius: 18px;
    margin: 48px auto 0 auto;
    max-width: 1100px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.how-it-works h2 {
    color: #004e8f;
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: bold;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 30px;
}
.step {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    max-width: 240px;
    min-width: 200px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(38,99,235,0.10);
}
.step-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.step h3 {
    color: #2563eb;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.step p {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonials {
    background: #001f4d;
    padding: 70px 40px 60px 40px;
    text-align: center;
    margin-top: 48px;
}
.testimonials h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 38px;
    font-weight: bold;
}
.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 32px 24px 24px 24px;
    max-width: 300px;
    min-width: 220px;
    text-align: center;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(38,99,235,0.10);
}
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #2563eb;
}
.testimonial-text {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 16px;
}
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.extra-info {
    font-size: 0.95rem;
    color: #2563eb;
    margin-top: 8px;
}

.footer {
    background: #001f4d;
    color: #fff;
    padding: 28px 0 18px 0;
    text-align: center;
    margin-top: 48px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-links {
    display: flex;
    gap: 18px;
    margin-top: 6px;
}
.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Modal styles for Privacy Policy and Terms of Service */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    margin: 60px auto;
    padding: 32px 28px 24px 28px;
    border-radius: 16px;
    max-width: 480px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: left;
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
}
.modal-content h2 {
    color: #2563eb;
    margin-bottom: 18px;
    font-size: 1.4rem;
}
.modal-content ul {
    margin: 16px 0 0 18px;
    padding: 0 0 0 12px;
}
.close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.6rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {
    color: #2563eb;
}
@media (max-width: 600px) {
    .modal-content {
        max-width: 95vw;
        padding: 18px 8px 14px 8px;
    }
}

@media (max-width: 900px) {
    .main-header {
        padding: 12px 18px;
    }
    .about-us, .how-it-works {
        padding: 30px 10px 20px 10px;
    }
    .steps, .testimonial-cards {
        flex-direction: column;
        gap: 24px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
} 