/* Shared QERDS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --accent: #667eea;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    transition: all 0.3s ease;
    overflow-x: hidden;
    position: relative;
}

.neon-borders {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 100;
}

.neon-strip {
    position: absolute;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607, #ff006e);
    background-size: 400% 100%;
    animation: neonFlow 3s linear infinite;
}

.neon-strip-1, .neon-strip-2 {
    left: 0;
    right: 0;
    height: 4px;
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
}

.neon-strip-1 { top: 0; }
.neon-strip-2 { bottom: 0; animation-delay: -1s; }

.neon-strip-3 {
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    animation-delay: -2s;
    background: linear-gradient(180deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607, #ff006e);
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
}

@keyframes neonFlow {
    0% { background-position: 0% 0%; filter: hue-rotate(0deg); }
    50% { background-position: 100% 0%; filter: hue-rotate(180deg); }
    100% { background-position: 0% 0%; filter: hue-rotate(360deg); }
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--gradient-4);
    top: 40%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.8);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #667eea;
    text-decoration: none;
    text-shadow: 0 0 20px currentColor;
}

.nav-controls {
    display: flex;
    gap: 10px;
}

.theme-toggle, .audio-toggle {
    background: var(--bg-secondary);
    border: none;
    border-radius: 50px;
    padding: 12px 16px;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 18px;
}

.theme-toggle:hover, .audio-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow);
}

.main-content {
    padding: 120px 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorCycle 4s infinite, slideUp 1s ease-out;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 1s ease-out 0.2s both;
}

@keyframes colorCycle {
    0% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--bg-secondary);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: inset 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-switch.annual::before {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--gradient-4);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent);
}

.pricing-card.popular::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-container {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    opacity: 0.7;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-icon.included {
    color: #48bb78;
}

.feature-icon.not-included {
    color: #cbd5e1;
}

.cta-button {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.enterprise-section {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out 0.8s both;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.enterprise-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enterprise-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    animation: slideUp 1s ease-out 1s both;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
    border-color: rgba(102, 126, 234, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 100px 1rem 2rem;
    }

    .page-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .enterprise-section {
        padding: 2.5rem 2rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .page-container { margin-top: 5rem; }
    .back-button { 
        padding: 10px 15px; 
        font-size: 14px;
    }

    .about-main .page-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .story-title, .team-section .section-title, .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-controls {
        gap: 5px;
    }
    
    .theme-toggle, .audio-toggle {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    animation: slideUp 1s ease-out 0.2s both;
}

.contact-info {
    animation: slideUp 1s ease-out 0.4s both;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

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

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

.contact-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-detail {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text-primary);
}

.office-hours {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    animation: slideUp 1s ease-out 0.6s both;
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

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

.map-section {
    margin-top: 4rem;
    animation: slideUp 1s ease-out 0.8s both;
}

.map-container {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* About Page Specific Styles */

.about-main {
    max-width: 1200px;
}

.about-main .page-title {
    margin-bottom: 3rem;
    animation: colorCycle 4s infinite, slideUp 1s ease-out;
}

.intro-section {
    text-align: center;
    margin-bottom: 5rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-visual {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.story-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0.1;
    animation: pulse-about 3s infinite;
}

.visual-icon {
    font-size: 8rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-about {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.team-section {
    margin-bottom: 5rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.team-section .section-title {
    background: var(--gradient-4);
}

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

.team-member {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(102, 126, 234, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.values-section {
    margin-bottom: 5rem;
    animation: slideUp 1s ease-out 0.8s both;
}

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

.value-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(102, 126, 234, 0.2);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 5s ease-in-out infinite;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: 30px;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 1s both;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles for centered content pages like privacy, terms, etc. */
body.body-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-controls {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow);
}

.page-container {
    background: var(--bg-secondary);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 4px 30px var(--shadow);
    border: 1px solid rgba(102, 126, 234, 0.1);
    max-width: 900px;
    width: 100%;
    margin: 6rem 1rem 4rem;
    text-align: left;
    animation: slideUp 1s ease-out 0.3s both;
}

.page-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px currentColor;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    padding-bottom: 1rem;
}

.page-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 6vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-container h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.page-container p, .page-container ul, .page-container li {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-container ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.page-container a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-container a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.page-container strong {
    color: var(--text-primary);
    font-weight: 600;
}

.effective-date {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.important-notice, .warning-box {
    background: rgba(251, 86, 7, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #fb5607;
}

.legal-notice {
    background: rgba(131, 56, 236, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #8338ec;
}

.highlight-box {
    background: rgba(67, 234, 123, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #43e97b;
}
