/* CSS Variables for Consistency */
:root {
    --primary-color: #00305d;
    --secondary-color: #f2666a;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --font-main: 'Inter', sans-serif;
}

/* Reset and Base Styles (Avoiding *) */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
header,
footer,
section,
main,
nav,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-weight: 500;
    color: var(--primary-color);
}

/* Top Ad Disclaimer */
.top-ad-disclaimer {
    background-color: #f8f9fa;
    color: var(--light-text);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

/* Header */
.main-header {
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.accent-text {
    color: var(--secondary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

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

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 40px 30px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - 40px);
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 48, 93, 0.9) 0%, rgba(0, 48, 93, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-container.small {
    max-width: 800px;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
}

.section-description {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Section */
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.featured-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Strategies Section */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.strategy-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 48, 93, 0.1);
}

.strategy-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.strategy-body {
    padding: 30px;
    text-align: center;
}

.strategy-focus {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.strategy-stats {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}



.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.contact-details {
    font-size: 0.95rem;
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.important-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 5000;
    padding: 25px;
    max-width: 500px;
    display: none;
    /* Shown via JS */
}

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-btn.secondary {
    background-color: var(--bg-light);
    color: var(--text-color);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 6000;
    display: none;
    /* Shown via JS */
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 12px;
    padding: 50px 40px;
    position: relative;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.modal-body h3 {
    margin: 20px 0 10px;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-overlay {
        background: rgba(0, 48, 93, 0.7);
    }

    .section-title {
        font-size: 2rem;
    }

    .strategies-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}