/* Core Pages Styles - Help Center, Contact Us, Privacy Policy */

/* ========== COMMON STYLES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Sections */
.help-hero,
.contact-hero,
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-hero::before,
.contact-hero::before,
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title i {
    margin-right: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.btn-primary:hover {
    background: #4338ca;
    border-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
    border-color: #4b5563;
}

.btn-outline-primary {
    background: transparent;
    color: #4f46e5;
    border-color: #4f46e5;
}

.btn-outline-primary:hover {
    background: #4f46e5;
    color: white;
}

.btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border-color: #6b7280;
}

.btn-outline-secondary:hover {
    background: #6b7280;
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ========== HELP CENTER STYLES ========== */
.help-center-container {
    min-height: 100vh;
    background: #f9fafb;
}

/* Search */
.help-search {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px 0 0 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
}

.search-button {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Quick Links */
.quick-links-section {
    padding: 80px 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-link-card:hover {
    border-color: #4f46e5;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.quick-link-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.quick-link-description {
    color: #6b7280;
    margin: 0;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

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

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.category-title i {
    margin-right: 0.75rem;
    color: #4f46e5;
}

.question-count {
    background: #4f46e5;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.question-text {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.toggle-icon {
    color: #6b7280;
    transition: transform 0.3s ease;
}

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

.faq-answer.show {
    max-height: 500px;
}

.answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Search highlighting */
.search-highlight {
    background: #fef3c7;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* No results message */
.no-results-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    margin: 2rem 0;
}

.no-results-content i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

/* Resources */
.resources-section {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #4f46e5;
    transform: translateY(-4px);
}

.resource-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.resource-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Need Help */
.need-help-section {
    padding: 80px 0;
    background: #f9fafb;
}

.need-help-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.need-help-content {
    flex: 1;
}

.need-help-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.need-help-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.need-help-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.need-help-illustration {
    margin-left: 2rem;
    color: #d1d5db;
    font-size: 4rem;
}

/* ========== CONTACT US STYLES ========== */
.contact-container {
    min-height: 100vh;
    background: #f9fafb;
}

.contact-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-section {
    position: relative;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-subtitle {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    space-y: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-label i {
    margin-right: 0.5rem;
    color: #4f46e5;
    width: 16px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ef4444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.error-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ef4444;
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    flex: 1;
    position: relative;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
    background: #f0fdf4;
    border-radius: 16px;
    border: 2px solid #bbf7d0;
}

.success-content i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: #047857;
}

/* Contact Info */
.contact-info-section {
    space-y: 2rem;
}

.info-card,
.faq-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.info-subtitle {
    color: #6b7280;
    line-height: 1.6;
}

.contact-methods {
    space-y: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f9fafb;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.method-detail {
    margin-bottom: 0.25rem;
}

.method-detail a {
    color: #4f46e5;
    text-decoration: none;
}

.method-detail a:hover {
    text-decoration: underline;
}

.method-note {
    color: #6b7280;
    font-size: 0.875rem;
}

/* FAQ Card */
.faq-content {
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.faq-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.faq-link:hover i {
    transform: translateX(4px);
}

/* Response Times */
.response-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.response-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.response-items {
    space-y: 0.75rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.response-item:last-child {
    border-bottom: none;
}

.response-type {
    color: #4b5563;
}

.response-time {
    font-weight: 600;
    color: #059669;
}

/* ========== PRIVACY POLICY STYLES ========== */
.privacy-container {
    min-height: 100vh;
    background: #f9fafb;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.last-updated i {
    margin-right: 0.5rem;
}

.privacy-content {
    padding: 80px 0;
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Table of Contents */
.toc-section {
    position: sticky;
    top: 2rem;
}

.toc-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.toc-link:hover,
.toc-link.active {
    background: #f3f4f6;
    color: #4f46e5;
}

/* Quick Summary */
.quick-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.summary-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.summary-title i {
    margin-right: 0.5rem;
    color: #4f46e5;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.summary-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Policy Content */
.policy-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.intro-text {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
}

.policy-sections {
    space-y: 3rem;
}

.policy-item {
    scroll-margin-top: 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.section-number {
    background: #4f46e5;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 1rem;
}

.section-content {
    color: #4b5563;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1rem;
}

/* Subsections */
.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1f2937;
}

.info-list,
.security-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.info-list li,
.security-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: start;
}

.info-list li:last-child,
.security-list li:last-child {
    border-bottom: none;
}

.security-list li i {
    margin-right: 0.75rem;
    color: #10b981;
    margin-top: 0.25rem;
}

/* User Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.right-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.right-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.right-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.right-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-text {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Action Button */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-button {
    width: 56px;
    height: 56px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.fab-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.fab-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Print Styles */
@media print {
    .floating-actions,
    .contact-actions,
    .toc-section {
        display: none !important;
    }
    
    .privacy-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #4f46e5;
    display: flex;
    align-items: center;
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-success {
    border-left-color: #10b981;
}

.notification i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.notification-error i {
    color: #ef4444;
}

.notification-success i {
    color: #10b981;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-wrapper,
    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: -1;
    }
    
    .need-help-card {
        flex-direction: column;
        text-align: center;
    }
    
    .need-help-illustration {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quick-links-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card,
    .policy-card {
        padding: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .need-help-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-card,
    .policy-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .quick-link-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .search-input,
    .search-button {
        padding: 12px 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .answer-content {
        padding: 0 1rem 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .help-center-container,
    .contact-container,
    .privacy-container {
        background: #111827;
        color: #f9fafb;
    }
    
    .card,
    .form-card,
    .info-card,
    .faq-card,
    .policy-card,
    .toc-card {
        background: #1f2937;
        border-color: #374151;
    }
    
    .section-title,
    .hero-title,
    .form-title,
    .info-title {
        color: #f9fafb;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: #6366f1;
    }
    
    .faq-question:hover {
        background: #374151;
    }
    
    .contact-method:hover {
        background: #374151;
    }
    
    .notification {
        background: #1f2937;
        color: #f9fafb;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
    }
    
    .btn-outline-primary {
        border-color: #000;
        color: #000;
    }
    
    .section-title::after {
        background: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.search-input:focus,
.search-button:focus,
.faq-question:focus,
.toc-link:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.quick-link-card,
.resource-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
    background: #4f46e5;
    color: white;
}