/* Info Pages Common Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--ufs-accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: #1e1e1e;
    color: #d4d4d4;
}

.content-section.alt-bg {
    background-color: #252526;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ufs-accent);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--ufs-accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.highlight-text {
    color: var(--ufs-accent);
    font-weight: 500;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d4d4d4;
}

.feature-list li i {
    color: var(--ufs-accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Stats Container */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--ufs-accent);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.problem-card {
    background: #252526;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--ufs-accent);
}

.problem-card i {
    font-size: 1.75rem;
    color: var(--ufs-accent);
    margin-bottom: 1rem;
}

.problem-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Page Styles */
.faq-page {
    background-color: #1e1e1e;
    min-height: 100vh;
}

.faq-content-section {
    padding: 4rem 0;
    background-color: #1e1e1e;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ufs-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ufs-accent);
    display: inline-block;
}

.faq-accordion-item {
    background: #252526;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-accordion-item:hover {
    border-color: #444;
}

.faq-accordion-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-accordion-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-accordion-question.open {
    background: rgba(255, 107, 0, 0.1);
    color: var(--ufs-accent);
}

.faq-accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ufs-accent);
    transition: transform 0.2s ease;
}

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

.faq-accordion-answer.show {
    max-height: 500px;
    padding: 0 1.25rem 1rem;
}

.faq-accordion-answer p {
    color: #d4d4d4;
    line-height: 1.7;
    margin: 0;
}

.faq-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-cta-section h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.faq-cta-section p {
    color: #888;
    margin-bottom: 1.5rem;
}

/* Terms & Privacy Page Styles */
.terms-page,
.privacy-page {
    background-color: #1e1e1e;
    min-height: 100vh;
    color: #d4d4d4;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ufs-accent);
    margin-bottom: 1.5rem;
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ufs-accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ufs-accent);
}

.terms-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-subtitle-small {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ccc;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.terms-list li strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
