@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #006600;
    --secondary: #FFFFFF;
    --accent: #FFD700;
    --text: #333333;
    --light: #f4f4f4;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

h1,
h2,
h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}


h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

header {
    background: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.logo-container img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    /* Gold Glow */
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.logo-container img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.nav-links a {
    padding: 5px 2px;
    margin: 0 15px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent) !important;
    font-weight: 700;
    border-bottom: 3px solid var(--accent);
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.6);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    z-index: 2;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-icon {
    height: 140px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

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

.btn-outline {
    border: 2px solid white;
    color: white;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.content-block h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

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

.overview-section {
    margin-bottom: 60px;
}

.card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 5px solid var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #eee;
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 5px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-container img {
    height: 50px;
    width: 50px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #bbb;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 700;
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.85rem;
}

/* FAQ Component */
.faq-container {
    margin: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-answer {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Image Rendering */
.content-image-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 900px;
}

.content-promo-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-promo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 15px;
    font-family: var(--font-sans);
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 20px;
        gap: 30px;
        text-align: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        border-left: 2px solid var(--accent);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-container h1 {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 300px;
    }

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

    .footer-brand .logo-container {
        justify-content: center;
    }
}