* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fefaf5 0%, #fff5ec 100%);
    color: #1a2c3e;
    overflow-x: hidden;
}
a{
    color:inherit;
    text-decoration:none;
}
/* ========== HEADER ========== */
.top-bar {
    background: linear-gradient(135deg, #1a2c3e 0%, #0f1e2c 100%);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.75rem;
}

    .top-bar .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

    .top-bar-left span i {
        margin-right: 6px;
        color: #3aaa5c;
    }

.top-bar-right {
    display: flex;
    gap: 20px;
}

    .top-bar-right a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
    }

        .top-bar-right a:hover {
            color: #3aaa5c;
        }

.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(58, 170, 92, 0.2);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3aaa5c, #f05a5a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(58, 170, 92, 0.3);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

    .logo-text .d {
        color: #3aaa5c;
    }

    .logo-text .b {
        color: #f05a5a;
    }

.logo-tag {
    font-size: 0.7rem;
    color: #6c7f8f;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .nav-menu a {
        text-decoration: none;
        font-weight: 600;
        color: #1e2f3f;
        transition: 0.3s;
        position: relative;
    }

        .nav-menu a:hover {
            color: #3aaa5c;
        }

.btn-header {
    background: linear-gradient(135deg, #3aaa5c, #2e8f4a);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(58, 170, 92, 0.4);
    }

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #fefaf5;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8ec;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

    .faq-question i {
        color: #3aaa5c;
        transition: 0.3s;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #5a6a75;
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1e2c 0%, #1a2c3e 100%);
    color: #cfdee9;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3aaa5c, #f05a5a);
    }

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #cfdee9;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #3aaa5c;
                padding-left: 5px;
            }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: #3aaa5c;
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
}
    .footer-bottom a {
        color: #3aaa5c;
        text-decoration:none;
    }
        .footer-bottom a:hover {
            color: #fff;
        }

    @media (max-width: 800px) {
        .nav-menu {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .banner-slider {
            height: 350px;
        }

        .slide-content h2 {
            font-size: 1.8rem;
        }

        .search-container {
            flex-direction: column;
        }

        .search-btn {
            padding: 12px;
        }

        .cat-grid {
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        }

        .cat-card i {
            font-size: 1.2rem;
        }

        .cat-card h4 {
            font-size: 0.6rem;
        }
    }
