:root {
    --primary-color: #2563EB;
    --secondary-color: #8BB0FF;
    --light-color: #5087FD;
    --dark-color: #1E293B;
    --success-color: #27ae60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background-color: var(--dark-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu */
.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
}

/* Content Container */
.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    margin-top: 20px;
    text-align: center;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    background: var(--secondary-color);
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.resource-list li:hover {
    transform: scale(1.05);
}

.resource-list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 36px;
}

.hero .btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Features */
.features {
    text-align: center;
    padding: 40px 20px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 250px;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 40px;
    text-align: center;
}

.testimonial-box {
    background: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    margin: 10px auto;
    max-width: 500px;
    color: white;
}

/* FAQ */
.faq {
    padding: 40px;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 10px auto;
    max-width: 600px;
}

/* Contact */
.contact {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 40px;
}

.contact a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .container {
        width: 90%;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
