/* ===== Global Styles ===== */
:root {
    --primary: #2a324b;       /* Dark navy blue */
    --secondary: #f7c35f;     /* Gold accent */
    --accent: #e63946;        /* Coral red */
    --text-dark: #333333;     /* Dark gray for text */
    --text-light: #f8f9fa;    /* Off-white */
    --bg-light: #ffffff;      /* Pure white */
    --bg-dark: #1a1a1a;       /* Near black */
    --border-color: #e0e0e0;  /* Light gray */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header Styles ===== */
.main-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--secondary);
}

.main-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== FAQ Hero Section ===== */
.faq-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1554412933-514a83d2f3c8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.faq-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FAQ Content ===== */
.faq-content {
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #666;
}

.faq-intro a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.faq-intro a:hover {
    color: var(--accent);
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--bg-light);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: #f9f9f9;
}

.faq-answer p {
    padding: 20px 0;
    color: #555;
    line-height: 1.7;
}

/* Additional Help Section */
.additional-help {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.additional-help h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.additional-help p {
    margin-bottom: 30px;
    color: #666;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
    transition: var(--transition);
}

.help-option:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.help-option i {
    font-size: 1.2rem;
}

/* ===== Footer Styles ===== */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--bg-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .faq-hero h2 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-categories {
        justify-content: flex-start;
    }
    
    .help-options {
        flex-direction: column;
        align-items: center;
    }
    
    .help-option {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}