/* ==================
   Reset & Base Styles 
   ================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #ff6b00;
    transition: color 0.3s;
}

a:hover {
    color: #e05a00;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================
   Typography 
   ================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

/* ==================
   Buttons 
   ================== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: #ff6b00;
    color: white;
}

.btn-primary:hover {
    background-color: #e05a00;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.btn-secondary:hover {
    background-color: #ff6b00;
    color: white;
}

/* ==================
   Header Styles 
   ================== */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container img {
    height: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list li a {
    color: #333;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.nav-list li a:hover {
    color: #ff6b00;
}

.nav-list li a.btn-primary {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    border-radius: 3px;
}

/* ==================
   Hero Section 
   ================== */
.hero-section {
    background-color: #f2f7fa;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    color: #222;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* Search Bar */
.search-container {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #ff6b00;
}

.search-button {
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #e05a00;
}

/* ==================
   FAQ Categories 
   ================== */
.faq-categories {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 71px;
    z-index: 900;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.category-button:hover {
    background-color: #f0f0f0;
}

.category-button.active {
    background-color: #ff6b00;
    color: white;
    border-color: #ff6b00;
}

.category-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ==================
   FAQ Content 
   ================== */
.faq-content {
    padding: 60px 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s;
}

.faq-question.active {
    background-color: #ff6b00;
}

.question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.faq-question.active .question-number {
    background-color: white;
    color: #ff6b00;
}

.faq-question h2 {
    flex: 1;
    font-size: 1.25rem;
    margin-bottom: 0;
    transition: color 0.3s;
}

.faq-question.active h2 {
    color: white;
}

.toggle-icon {
    margin-left: 20px;
    color: #aaa;
    transition: transform 0.3s, color 0.3s;
}

.faq-question.active .toggle-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 2000px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 500;
}

/* Steps Container */
.steps-container {
    margin-top: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 15px;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 5px;
}

.action-button {
    margin-top: 30px;
    text-align: center;
}

/* Eligibility Note */
.eligibility-note {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 25px;
}

.eligibility-note i {
    font-size: 1.5rem;
    color: #ff6b00;
    margin-right: 15px;
    margin-top: 3px;
}

/* Features Accordion */
.features-accordion {
    margin-top: 25px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header.active {
    background-color: #ff6b00;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    background-color: white;
    color: #ff6b00;
}

.accordion-header h3 {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.accordion-header.active h3 {
    color: white;
}

.accordion-toggle {
    color: #aaa;
    transition: transform 0.3s, color 0.3s;
}

.accordion-header.active .accordion-toggle {
    color: white;
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.feature-list {
    padding-left: 15px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ff6b00;
    border-radius: 50%;
}

/* Dashboard Preview */
.dashboard-preview {
    margin-top: 40px;
    text-align: center;
}

.dashboard-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #777;
}

/* Security Features */
.security-features {
    margin-top: 25px;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.security-feature:hover {
    transform: translateY(-5px);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.security-content h3 {
    margin-bottom: 5px;
}

.data-policy-link {
    margin-top: 30px;
    text-align: center;
}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #f8f9fa;
    transition: background-color 0.3s;
}

.link-with-icon:hover {
    background-color: #f0f0f0;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #ff6b00;
}

.info-icon {
    font-size: 1.5rem;
    color: #ff6b00;
    margin-right: 15px;
    margin-top: 3px;
}

.info-content h3 {
    margin-bottom: 5px;
    color: #ff6b00;
}

/* Fee Management Features */
.fee-management-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.fee-feature {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.fee-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.fee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.fee-icon i {
    font-size: 1.5rem;
}

.fee-management-image {
    margin-top: 30px;
    text-align: center;
}

.feature-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Support Options */
.support-options {
    margin-top: 25px;
}

.support-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.support-option:hover {
    transform: translateY(-5px);
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.support-details h3 {
    margin-bottom: 5px;
}

.support-hours {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b00;
}

/* Communication Channels */
.communication-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 150px;
    text-align: center;
    transition: transform 0.3s;
}

.channel:hover {
    transform: translateY(-5px);
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-bottom: 10px;
}

.channel-name {
    font-weight: 500;
}

.preferences-note {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    color: #777;
}

/* Communication Features */
.communication-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.comm-feature {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.comm-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comm-feature i {
    font-size: 2rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

/* Technical Support Steps */
.technical-support-steps {
    margin-top: 25px;
}

.support-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.uptime-commitment {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #ff6b00;
}

.commitment-icon {
    font-size: 2rem;
    color: #ff6b00;
    margin-right: 15px;
}

/* Training Resources */
.training-resources {
    margin-top: 25px;
}

.training-resource {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.training-resource:hover {
    transform: translateY(-5px);
}

.resource-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.training-request {
    margin-top: 30px;
    text-align: center;
}

/* No Results */
.no-results {
    padding: 60px 0;
    text-align: center;
}

.no-results-icon {
    font-size: 3rem;
    color: #aaa;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 10px;
}

.no-results p {
    max-width: 500px;
    margin: 0 auto 20px;
    color: #777;
}

.reset-search {
    margin-top: 20px;
}

/* Contact Support */
.contact-support {
    margin-top: 60px;
    background-color: #f2f7fa;
    border-radius: 12px;
    padding: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5rem;
    color: #ff6b00;
}

.contact-text {
    flex: 1;
    min-width: 200px;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: #333;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

/* Get Started CTA */
.get-started {
    background-color: #ff6b00;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.get-started .btn-primary {
    background-color: white;
    color: #ff6b00;
}

.get-started .btn-primary:hover {
    background-color: #f8f9fa;
}

.get-started .btn-secondary {
    border-color: white;
    color: white;
}

.get-started .btn-secondary:hover {
    background-color: white;
    color: #ff6b00;
}

/* Footer Styles */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6b00;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links li a:hover, .footer-links li a.active {
    color: #ff6b00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #ff6b00;
    color: white;
    transform: translateY(-3px);
}

.website-link {
    margin-top: 20px;
}

.website-link a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.website-link a:hover {
    color: #ff6b00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
}

/* ==================
   Responsive Styles 
   ================== */
@media (max-width: 1024px) {
    .categories-container {
        flex-wrap: wrap;
    }
    
    .category-button {
        flex: 1;
        min-width: calc(33.33% - 15px);
    }
    
    .fee-management-features,
    .communication-features {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        position: relative;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .category-button {
        min-width: calc(50% - 15px);
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .question-number {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    
    .faq-question h2 {
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-input {
        border-radius: 50px;
        border-right: 2px solid #e0e0e0;
        margin-bottom: 10px;
    }
    
    .search-button {
        border-radius: 50px;
        padding: 12px 25px;
    }
    
    .category-button {
        min-width: 100%;
    }
    
    .step-item,
    .security-feature,
    .support-option,
    .training-resource {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number,
    .security-icon,
    .support-icon,
    .resource-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .accordion-header {
        flex-wrap: wrap;
    }
    
    .accordion-icon {
        margin-bottom: 10px;
    }
    
    .fee-management-features,
    .communication-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}