* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* --- Header --- */
header.sticky {
    background: #003087;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

/* --- Navigation --- */
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0, 48, 135, 0.8), rgba(0, 48, 135, 0.8)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #ffd700;
    color: #003087;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* --- Sections --- */
section {
    padding: 4rem 2rem;
    text-align: center;
}

section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #003087;
}

/* --- Grids --- */
.features-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature, .testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover, .testimonial:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #003087;
}

.testimonial p {
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: #003087;
}

/* --- Purchase Section --- */
#purchase {
    background: #f0f4f8;
}

#purchase p.secure {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

/* PayPal Button Styling */
#paypal-container-J7JTA7M8X7QSN {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

#paypal-container-J7JTA7M8X7QSN iframe {
    width: 100% !important;
    min-width: 300px;
    margin: 0 auto;
}

#paypal-container-J7JTA7M8X7QSN .paypal-button-text {
    display: block !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.5;
    padding: 8px 0;
    width: 100%;
    color: #003087;
    font-weight: 700;
}

#paypal-container-J7JTA7M8X7QSN .paypal-button {
    display: block !important;
    text-align: center !important;
    margin: 10px auto 0;
}

/* --- Forms --- */
form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: 700;
    text-align: left;
    color: #003087;
}

form input, form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background: #003087;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #002569;
}

/* --- Footer --- */
footer {
    background: #003087;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* --- Responsive Fixes --- */
@media (max-width: 768px) {
    header.sticky {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0.5rem 1rem;
    }

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

    .logo {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        justify-content: flex-start;
    }

    nav ul li {
        text-align: left;
        padding-left: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    #paypal-container-J7JTA7M8X7QSN iframe {
        min-width: 250px;
    }

    #paypal-container-J7JTA7M8X7QSN .paypal-button-text {
        font-size: 14px !important;
        padding: 6px 0;
    }
}
/* --- Compare Section --- */
#compare {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

#compare h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #003087;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s;
}

.compare-box:hover {
    transform: translateY(-5px);
}

.compare-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #003087;
}

.compare-box ul {
    list-style: none;
    padding-left: 0;
}

.compare-box li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.compare-box.us {
    border-left: 5px solid #28a745;
}

.compare-box.them {
    border-left: 5px solid #dc3545;
}

/* --- Responsive Fix for Compare Section --- */
@media (max-width: 768px) {
    #compare {
        padding: 2rem 1rem;
    }

    .compare-box {
        padding: 1.5rem;
    }

    .compare-box h3 {
        font-size: 1.3rem;
    }

    .compare-box li {
        font-size: 0.95rem;
    }
}
