/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.last-updated {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

/* Safety Hero Stats */
.safety-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Container Styles */
.faq-container,
.help-container,
.safety-container,
.privacy-container,
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Search Boxes */
.search-box,
.help-search {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.search-box input,
.help-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus,
.help-search input:focus {
    border-color: #667eea;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
}

.search-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    margin-left: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #5a67d8;
}

/* Category Navigation */
.faq-categories,
.safety-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn,
.safety-nav-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active,
.safety-nav-btn:hover,
.safety-nav-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Help Categories Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.help-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-category h3 {
    margin-bottom: 1rem;
    color: #333;
}

.help-category p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* FAQ Items */
.faq-content {
    margin: 3rem 0;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
}

/* Help Content */
.help-content {
    margin: 3rem 0;
}

.help-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.help-article {
    margin-bottom: 2rem;
}

.help-article h3 {
    color: #333;
    margin-bottom: 1rem;
}

.article-content {
    color: #6c757d;
    line-height: 1.6;
}

.tip-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.price-item.popular {
    border-color: #667eea;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 1rem 0;
}

/* Safety Cards */
.safety-content {
    margin: 3rem 0;
}

.safety-section {
    margin-bottom: 3rem;
}

.safety-section h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.safety-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.safety-card.warning {
    border-left: 5px solid #ff6b6b;
}

.safety-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check {
    color: #28a745;
    font-weight: bold;
}

.cross {
    color: #dc3545;
    font-weight: bold;
}

.report {
    color: #ffc107;
    font-weight: bold;
}

/* Red Flags */
.red-flags {
    display: grid;
    gap: 1rem;
}

.flag-item {
    background: #fff5f5;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

/* Communication Steps */
.communication-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.location-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.location-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Scam Alert */
.scam-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.scam-alert h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.scam-examples {
    display: grid;
    gap: 1rem;
}

.scam-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Emergency Section */
.emergency-section {
    background: #fff5f5;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.emergency-section h2 {
    color: #dc3545;
    margin-bottom: 2rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.emergency-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    color: #dc3545;
    margin: 1rem 0;
}

/* Safety Reminder */
.safety-reminder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.reminder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reminder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Privacy/Terms Navigation */
.privacy-navigation,
.terms-navigation {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-sidebar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-nav,
.terms-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    justify-content: center;
}

.privacy-nav a,
.terms-nav a {
    color: #667eea;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.privacy-nav a:hover,
.terms-nav a:hover {
    background: #667eea;
    color: white
}

/* Privacy/Terms Content */
.privacy-content,
.terms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-section,
.terms-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.privacy-section h2,
.terms-section h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.privacy-highlight {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.privacy-highlight h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.privacy-highlight ul {
    color: #155724;
}

/* Information Categories */
.info-category,
.usage-grid,
.sharing-grid,
.security-measures,
.rights-grid,
.cookies-info,
.contact-grid,
.eligibility-grid,
.account-info,
.use-guidelines,
.content-rules,
.payment-info,
.privacy-terms,
.safety-terms,
.ip-rights,
.termination-info,
.disclaimers-grid {
    margin: 2rem 0;
}

.info-list,
.rights-list {
    color: #6c757d;
    line-height: 1.8;
}

.info-list li,
.rights-list li {
    margin-bottom: 0.5rem;
}

.usage-grid,
.sharing-grid,
.rights-grid,
.eligibility-grid,
.account-info,
.use-guidelines,
.content-rules,
.safety-terms,
.ip-rights,
.termination-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usage-category,
.sharing-do,
.sharing-dont,
.rights-category,
.retention-info,
.eligibility-requirements,
.account-requirements,
.account-creation,
.account-security,
.allowed-uses,
.prohibited-uses,
.your-content,
.prohibited-content,
.subscription-plans,
.payment-processing,
.auto-renewal,
.our-commitment,
.your-responsibility,
.our-rights,
.your-rights,
.by-you,
.by-us {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.sharing-dont {
    border-left-color: #dc3545;
}

.prohibited-uses,
.prohibited-content {
    border-left-color: #dc3545;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.security-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.security-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Mobile Money Security */
.mobile-money-security {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.mobile-money-security h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.mobile-money-security ul {
    color: #1565c0;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-type {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.cookie-type h4 {
    color: #333;
    margin-bottom: 1rem;
}

.cookie-type p {
    color: #6c757d;
    font-size: 0.9rem;
}

.cookie-control {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ffc107;
}

/* Terms Specific Styles */
.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.important-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.important-notice p {
    color: #856404;
}

.service-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.service-info h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.service-info ul {
    color: #1565c0;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.plan-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-item.popular {
    border-color: #667eea;
    transform: scale(1.05);
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 1rem 0;
}

/* Prohibited Grid */
.prohibited-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.prohibited-item {
    background: #fff5f5;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.prohibited-item strong {
    color: #721c24;
}

.prohibited-item p {
    color: #721c24;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Disclaimer Items */
.disclaimers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.disclaimer-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.disclaimer-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.disclaimer-item ul {
    color: #6c757d;
}

/* Jurisdiction Info */
.jurisdiction-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.jurisdiction-info h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.jurisdiction-info ul {
    color: #1565c0;
}

/* Changes Notice */
.changes-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.changes-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.changes-notice p {
    color: #856404;
}

/* Company Info */
.company-info {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.company-info h4 {
    color: #155724;
    margin-bottom: 0.5rem;
}

.company-info p {
    color: #155724;
    margin: 0;
}

/* Contact Support */
.contact-support {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-support h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-support p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-contact {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

/* Quick Actions */
.quick-actions {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-actions h3 {
    color: #333;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #667eea;
    color: white;
}

/* Troubleshoot Grid */
.troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.issue-solution {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.issue-solution h4 {
    color: #333;
    margin-bottom: 1rem;
}

.issue-solution p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-method {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

/* Payment Issues */
.payment-issues {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.payment-issues h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.payment-issues ul {
    color: #856404;
}

/* Reporting Steps */
.reporting-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .safety-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-categories,
    .safety-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-nav,
    .terms-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .communication-steps .step {
        flex-direction: row;
        text-align: left;
    }
    
    .nav-sidebar {
        padding: 0 1rem;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .faq-container,
    .help-container,
    .safety-container,
    .privacy-container,
    .terms-container {
        padding: 0 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-grid,
    .sharing-grid,
    .rights-grid,
    .eligibility-grid,
    .account-info,
    .use-guidelines,
    .content-rules,
    .safety-terms,
    .ip-rights,
    .termination-info,
    .disclaimers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .search-box,
    .help-search,
    .faq-categories,
    .safety-navigation,
    .privacy-navigation,
    .terms-navigation,
    .contact-support,
    .quick-actions,
    footer {
        display: none;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
    
    .safety-card,
    .faq-item,
    .help-section,
    .privacy-section,
    .terms-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
