/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light theme colors */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-yellow: #f59e0b;
    --accent-purple: #8b5cf6;
    --accent-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

[data-theme="dark"] {
    /* Dark theme colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --accent-blue: #60a5fa;
    --accent-green: #34d399;
    --accent-yellow: #fbbf24;
    --accent-purple: #a78bfa;
    --accent-red: #f87171;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    min-height: 100vh;
    transition: all 0.3s ease;
}

a{
    color: #ad4e4e;
}

/* Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main {
    flex: 1;
    padding: 2rem 0;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-muted);
}

.switch {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 1.5rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.125rem;
    width: 1.125rem;
    left: 0.1875rem;
    bottom: 0.1875rem;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-blue);
}

input:checked + .slider:before {
    transform: translateX(1.5rem);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 3xl;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--accent-green);
}

.status-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Sections */
.section {
    margin-bottom: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 2xl;
    margin-left: auto;
    margin-right: auto;
}

.subsection {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-span-2 {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .grid-span-2 {
        grid-column: span 1;
    }
}

/* Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.large-card {
    padding: 2.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Icon Wrappers */
.icon-wrapper {
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-wrapper.blue { background: rgba(59, 130, 246, 0.1); }
.icon-wrapper.blue .icon { color: var(--accent-blue); }

.icon-wrapper.yellow { background: rgba(245, 158, 11, 0.1); }
.icon-wrapper.yellow .icon { color: var(--accent-yellow); }

.icon-wrapper.green { background: rgba(16, 185, 129, 0.1); }
.icon-wrapper.green .icon { color: var(--accent-green); }

.icon-wrapper.purple { background: rgba(139, 92, 246, 0.1); }
.icon-wrapper.purple .icon { color: var(--accent-purple); }

.icon-wrapper.red { background: rgba(239, 68, 68, 0.1); }
.icon-wrapper.red .icon { color: var(--accent-red); }

.icon-wrapper.blue-solid { background: rgba(59, 130, 246, 0.2); }
.icon-wrapper.green-solid { background: rgba(16, 185, 129, 0.2); }
.icon-wrapper.purple-solid { background: rgba(139, 92, 246, 0.2); }

/* Gradient Cards */
.gradient-card {
    border: none;
}

.blue-gradient {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
}

.green-gradient {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(110, 231, 183, 0.1) 100%);
}

.purple-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(196, 181, 253, 0.1) 100%);
}

/* Response Times */
.response-times {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.response-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.response-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.response-icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-muted);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--accent-green);
    color: white;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-purple {
    background: var(--accent-purple);
    color: white;
}

.btn-purple:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-tertiary);
    transform: translateY(-1px);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.button-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Forms */
.contact-form {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.file-upload {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--accent-blue);
}

.upload-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
}

.file-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
}

/* Help Tip */
.help-tip {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
}

.tip-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tip-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.tip-subtitle {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tip-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.tip-list li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--accent-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 4xl;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.timeline-item.blue-timeline {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
}

.timeline-item.green-timeline {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(110, 231, 183, 0.1) 100%);
}

.timeline-item.purple-timeline {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(196, 181, 253, 0.1) 100%);
}

.timeline-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.timeline-item.blue-timeline .timeline-icon {
    background: rgba(59, 130, 246, 0.2);
}

.timeline-item.green-timeline .timeline-icon {
    background: rgba(16, 185, 129, 0.2);
}

.timeline-item.purple-timeline .timeline-icon {
    background: rgba(139, 92, 246, 0.2);
}

.timeline-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.timeline-item.blue-timeline .timeline-icon .icon {
    color: var(--accent-blue);
}

.timeline-item.green-timeline .timeline-icon .icon {
    color: var(--accent-green);
}

.timeline-item.purple-timeline .timeline-icon .icon {
    color: var(--accent-purple);
}

.timeline-date {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Legal Section */
.legal-section {
    text-align: center;
}

.legal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* FAQ Specific Styles */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-blue);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-list li {
    margin-bottom: 0.5rem;
}

/* Help Section */
.help-section {
    margin-top: 3rem;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.help-icon {
    width: 3rem;
    height: 3rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.help-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.help-description {
    color: var(--text-secondary);
}

.help-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

@media (max-width: 768px) {
    .help-content {
        flex-direction: column;
        text-align: center;
    }
    
    .help-buttons {
        margin-left: 0;
    }
}

/* Online Support Specific Styles */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.action-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.primary-action {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
}

.action-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.action-icon .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.action-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.action-description {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.action-time {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Chat Interface */
.chat-container {
    max-width: 4xl;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.agent-name {
    font-weight: 600;
    color: var(--text-primary);
}

.agent-status {
    font-size: 0.875rem;
    color: var(--accent-green);
}

.chat-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: var(--bg-tertiary);
}

.chat-close .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
}

.agent-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--accent-green);
}

.message-content {
    max-width: 70%;
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.user-message .message-content {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.message-content p {
    margin: 0;
    line-height: 1.5;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    display: block;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chat-input-container {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.chat-send {
    background: var(--accent-blue);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-send:hover {
    background: #2563eb;
}

.chat-send .icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-action {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-action:hover {
    background: var(--bg-tertiary);
}

.chat-action .icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-muted);
}

/* Resource Cards */
.resource-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resource-icon {
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
}

.resource-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-blue);
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.resource-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.resource-list li {
    margin-bottom: 0.75rem;
}

.resource-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Forum Stats */
.forum-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Support Hours */
.support-hours {
    padding: 2rem;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.hours-icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent-blue);
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.hours-day {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-time {
    color: var(--text-secondary);
}

.hours-note {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
}

.note-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.hours-note p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Utility Classes */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .theme-toggle {
        order: -1;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .forum-stats {
        justify-content: space-around;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
