* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.5;
    color: #1e293b;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero with Background Image */
.hero {

    position: relative;
 
    /*background: url('../images/urbaun.png') center/cover no-repeat fixed;*/
    height:20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;

    
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(230, 119, 9);
}

.hero h1,
.hero p,
.hero .stats {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.hero p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 12px;
    color: #fff;
}

.hero .stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.hero .stats i {
    margin-right: 6px;
}

/* Category Navigation */
.category-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 10px 0 30px;
}

.nav-item {
    background: #f97316;
    padding: 14px 8px;
    text-align: center;
    border: 1px solid #e68a2e;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.nav-item:hover {
    background: #e68a2e;
}

.nav-item.active {
    background: #d97706;
    border-color: #b45309;
    color: #fff;
}

.nav-item i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
    color: #fff;
}

.nav-item.active i {
    color: #fff;
}

/* FAQ Section */
.faq-wrapper {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f97316;
}

.faq-item {
    border-bottom: 0.5px solid #f97316;
    margin-bottom: 8px;
    background: #fff;
}

.faq-question {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1e293b;
}

.faq-question:hover {
    background: #fff7ed;
}

.faq-question i {
    color: #f97316;
    transition: transform 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 18px 16px;
    color: #475569;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #f97316;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #d97706;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 200px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .category-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .stats {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 180px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .category-nav {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-item {
        font-size: 12px;
        padding: 10px 6px;
    }
}