/* Import the main styles */
@import url('styles.css');

/* FAQ Item Headings - Footer Color */
.faq-item h3 {
    color: #05b2b5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mobile Menu Toggle Button - Ensure it's available */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4a574;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Override */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile dropdown styles - completely hide dropdowns */
    .dropdown-menu {
        display: none !important;
    }
    
    .nav-dropdown::before {
        display: none;
    }
}

