      .container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
  /* Newsletter Section */
    .newsletter {
        background: var(--primary);
        color: white;
        padding: 60px 1.5rem;
        text-align: center;
        width: 100%;
    }

    .newsletter h2 {
        font-size: 36px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .newsletter p {
        font-size: 16px;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
        max-width: 500px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form input {
        flex: 1;
        min-width: 200px;
        padding: 14px 20px;
        border: none;
        border-radius: 50px;
        font-size: 14px;
        outline: none;
    }

    .newsletter-form button {
        padding: 14px 28px;
        background: var(--accent);
        color: var(--text-dark);
        border: none;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
        background: #f5d5c0;
        transform: translateY(-2px);
    }

    /* Footer */
    footer {
        background: #2d2d2d;
        color: #f0f0f0;
        padding: 50px 1.5rem 20px;
        width: 100%;
    }

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

    .footer-section h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }

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

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

    .footer-section ul li a {
        color: #f0f0f0;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: var(--accent);
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.8;
        color: #bbb;
    }

    .footer-bottom {
        border-top: 1px solid #444;
        padding-top: 30px;
        text-align: center;
        color: #bbb;
        font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        nav {
            display: none;
        }

        nav.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            gap: 15px;
        }

        .menu-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 16px;
        }

        .section-header h2 {
            font-size: 32px;
        }

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

        .hero-buttons {
            flex-direction: column;
        }

        .hero-buttons .btn {
            width: 100%;
            text-align: center;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form input,
        .newsletter-form button {
            width: 100%;
        }

        .top-banner {
            padding: 10px 1.5rem;
            font-size: 12px;
        }

        .header-content {
            padding: 15px 0;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            padding: 15px 0;
        }

        .logo {
            font-size: 18px;
            gap: 5px;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }

        .hero {
            padding: 60px 1.5rem;
        }

        .hero h1 {
            font-size: 28px;
        }

        .hero p {
            font-size: 14px;
        }

        .section-header h2 {
            font-size: 24px;
        }

        .categories-grid {
            gap: 15px;
        }

        .category-card {
            padding: 15px;
        }

        .category-icon {
            font-size: 36px;
        }

        .btn {
            padding: 10px 20px;
            font-size: 12px;
        }

        nav {
            gap: 15px;
        }

        nav a {
            font-size: 13px;
        }

        .top-banner-content {
            flex-direction: column;
            gap: 5px;
        }
    }