:root {
    --primary: #003366;
    /* Navy Blue */
    --accent: #C0B283;
    /* Antique Gold */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f4f4f4;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    background-color: var(--white);
}

/* Class-based Reset */
.heading {
    font-family: var(--font-heading);
    margin: 0;
    color: var(--primary);
}

.para {
    margin: 0 0 15px;
}

.list-base {
    padding: 0;
    list-style: none;
    margin: 0 0 15px;
}

.link-base {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.img-responsive {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b0a172;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 15px auto 30px;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.shield-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.logo-accent {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.toggle-bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
}

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 20px 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    flex-direction: column;
    text-align: center;
    display: flex;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    display: block;
    color: var(--white);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1591115765373-5207764f72e4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 200px 0 150px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.hero-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #ddd;
    border-radius: 4px;
    box-shadow: var(--shadow);
    background-image: url('https://images.unsplash.com/photo-1555529532-677bd0b55504?ixlib=rb-1.2.1&auto=format&fit=crop&w=700&q=80');
    background-size: cover;
    background-position: center;
}

/* Benefits */
.benefits {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-radius: 4px;
    border-top: 3px solid var(--accent);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    text-align: center;
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
}

.author {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* FAQ */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-light);
}

.faq-answer.show {
    display: block;
}

.plus {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: #aab7c4;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-link {
    color: #aab7c4;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-legal {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
}

.ad-note {
    opacity: 0.5;
    margin-top: 5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 20px;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.cookie-text {
    margin: 0;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 80px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.legal-text {
    margin-top: 20px;
    text-align: left;
}

/* Responsive */
@media (max-width: 900px) {

    .nav,
    .cta-btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
    }
}