*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    color: #495057;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.navbar
{
    position: fixed;
    z-index: 1000;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 2rem;
    border-bottom: 1px solid #dee2e6;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
}
.navbar-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.navbar-logo
{
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #ff7f2a;
}
.navbar-menu
{
    display: flex;
    list-style: none;
    gap: 2rem;
}
.navbar-menu a
{
    font-weight: 500;
    position: relative;
    transition: color .3s ease;
    text-decoration: none;
    color: #6c757d;
}
.navbar-menu a:hover
{
    color: #ff7f2a;
}
.navbar-menu a::after
{
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    content: '';
    transition: all .3s ease;
    transform: translateX(-50%);
    background: #ff7f2a;
}
.navbar-menu a:hover::after
{
    width: 100%;
}
.mobile-menu-btn
{
    font-size: 1.5rem;
    display: none;
    padding: .5rem;
    cursor: pointer;
    color: #ff7f2a;
    border: none;
    background: none;
}
.mobile-menu-overlay
{
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
}
.mobile-menu
{
    position: fixed;
    z-index: 1002;
    top: 0;
    right: -300px;
    display: none;
    width: 300px;
    height: 100vh;
    transition: right .3s ease;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,.1);
}
.mobile-menu.active
{
    right: 0;
}
.mobile-menu-header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}
.mobile-menu-header .logo
{
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff7f2a;
}
.mobile-menu-close
{
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    border: none;
    background: none;
}
.mobile-menu-items
{
    padding: 1rem 0;
    list-style: none;
}
.mobile-menu-items li
{
    border-bottom: 1px solid #f8f9fa;
}
.mobile-menu-items a
{
    font-weight: 500;
    display: block;
    padding: 1rem 1.5rem;
    transition: background-color .3s ease;
    text-decoration: none;
    color: #495057;
}
.mobile-menu-items a:hover
{
    color: #ff7f2a;
    background-color: #f8f9fa;
}
.main-content
{
    margin-top: 60px;
    padding: 0;
}
.container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hero-section
{
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.hero-title
{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff7f2a;
}
.hero-subtitle
{
    font-size: 1.2rem;
    max-width: 600px;
    margin-right: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    color: #6c757d;
}
.search-box
{
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.search-input
{
    font-size: 1rem;
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    transition: border-color .3s ease, box-shadow .3s ease;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    background: white;
}
.search-input:focus
{
    border-color: #ff7f2a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 127, 42, .1);
}
.search-icon
{
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #6c757d;
}
.faq-section
{
    padding: 5rem 0;
    background: white;
}
.section-title
{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #343a40;
}
.section-subtitle
{
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    color: #6c757d;
}
.faq-categories
{
    display: grid;
    margin-bottom: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.faq-category
{
    padding: 2rem;
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}
.faq-category:hover
{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.category-header
{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.category-icon
{
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    color: white;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff7f2a, #ff9f5f);
}
.category-title
{
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
}
.faq-items
{
    list-style: none;
}
.faq-item
{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}
.faq-item:last-child
{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.faq-question
{
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
    padding: .5rem;
    cursor: pointer;
    transition: background-color .3s ease;
    color: #495057;
    border-radius: 8px;
}
.faq-question:hover
{
    background-color: #f8f9fa;
}
.faq-question i
{
    transition: transform .3s ease;
    color: #ff7f2a;
}
.faq-question.active i
{
    transform: rotate(180deg);
}
.faq-answer
{
    font-size: .95rem;
    line-height: 1.6;
    overflow: hidden;
    max-height: 0;
    padding-left: 1rem;
    transition: max-height .3s ease;
    color: #6c757d;
}
.faq-answer.active
{
    max-height: 200px;
    padding-bottom: .5rem;
}
.contact-section
{
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}
.contact-grid
{
    display: grid;
    margin-top: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.contact-card
{
    padding: 2rem;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    background: white;
}
.contact-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.contact-icon
{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: white;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7f2a, #ff9f5f);
}
.contact-title
{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #343a40;
}
.contact-description
{
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #6c757d;
}
.contact-info
{
    font-weight: 500;
    margin-bottom: 1rem;
    color: #495057;
}
.contact-hours
{
    font-size: .9rem;
    color: #6c757d;
}
.footer
{
    padding: 3rem 2rem 2rem;
    color: black;
}
.footer-content
{
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.footer-section h4
{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff7f2a;
}
.footer-section p,
.footer-section a
{
    line-height: 1.6;
    display: block;
    margin-bottom: .5rem;
    text-decoration: none;
    color: #333;
}
.footer-section a:hover
{
    color: #ff7f2a;
}
.social-links
{
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
}
.social-links a
{
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: background-color .3s ease;
    color: #ff7f2a;
}
.footer-bottom
{
    font-size: .9rem;
    padding-top: 2rem;
    text-align: center;
    color: #6c757d;
    border-top: 1px solid #495057;
}
@media (max-width: 768px)
{
    .navbar
    {
        padding: 0 1rem;
    }
    .navbar-menu
    {
        display: none;
    }
    .mobile-menu-btn,
    .mobile-menu,
    .mobile-menu-overlay
    {
        display: block;
    }
    .hero-section
    {
        padding: 3rem 1rem;
    }
    .hero-title
    {
        font-size: 2rem;
    }
    .hero-subtitle
    {
        font-size: 1rem;
    }
    .section-title
    {
        font-size: 2rem;
    }
    .section-subtitle
    {
        font-size: 1rem;
    }
    .faq-categories,
    .contact-grid
    {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-section,
    .contact-section
    {
        padding: 3rem 0;
    }
    .faq-category,
    .contact-card
    {
        padding: 1.5rem;
    }
    .container
    {
        padding: 0 1rem;
    }
}
@media (max-width: 480px)
{
    .hero-title
    {
        font-size: 1.8rem;
    }
    .section-title
    {
        font-size: 1.8rem;
    }
    .faq-category,
    .contact-card
    {
        padding: 1.2rem;
    }
}
