/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A1A1A;
    --primary-light: #333333;
    --accent: #007AFF;
    --accent-light: #5AC8FA;
    --background: #FFFFFF;
    --background-alt: #F8F9FA;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --border: #E5E5E7;
    --border-light: #F0F0F2;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--background-alt);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(0, 122, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-glass:hover {
    background: var(--background-alt);
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--background-alt);
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background: var(--border-light);
}

/* Phone Mockup */
.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 320px;
    padding: 8px;
    background: #1a1a1a;
    border-radius: 40px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transform: rotate(-6deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(-3deg);
}

.phone-frame {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Glass Cards Effect */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.feature-card {
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(90, 200, 250, 0.02) 100%);
}

.pro-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--background-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Icon fallback system */
.feature-icon .icon-fallback {
    display: none;
    font-size: 1.8rem;
    line-height: 1;
}

/* Default Font Awesome styles */
.feature-icon i {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.feature-card.highlight .feature-icon {
    background: rgba(0, 122, 255, 0.08);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    background: var(--background-alt);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background: var(--surface);
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--background-alt);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.tab-btn.active {
    background: var(--surface);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tab-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.float-card {
    position: absolute;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    animation: float-card 20s ease-in-out infinite;
}

.float-card.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.float-card.card-2 {
    top: 120px;
    right: 40px;
    animation-delay: 7s;
}

.float-card.card-3 {
    bottom: 40px;
    left: 60px;
    animation-delay: 14s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.card-icon {
    font-size: 1.25rem;
}

.card-stat {
    font-weight: 600;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--background-alt);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(90, 200, 250, 0.02) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--surface);
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.store-button img {
    height: 54px;
    transition: transform 0.3s ease;
}

.store-button:hover img {
    transform: scale(1.05);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.download-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.download-features i {
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--background-alt);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 300px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--text-primary);
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: var(--background);
}

/* Remove animated background */
.animated-bg {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 280px;
        transform: rotate(0);
    }

    .showcase-wrapper {
        grid-template-columns: 1fr;
    }

    .showcase-visual {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .policy-content {
        padding: 40px 24px;
    }
}

/* Privacy Policy Specific Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
}

.policy-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
    padding-top: 20px;
}

.policy-content h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #333;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.policy-content a {
    color: #007AFF;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: #999;
    font-size: 16px;
    margin-bottom: 40px;
}

.policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.policy-nav a {
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.policy-nav a:hover {
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-color: #007AFF;
}

.highlight-box {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #007AFF;
}

.highlight-box h3 {
    margin: 0 0 10px;
    color: #007AFF;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box p {
    margin: 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.contact-info p {
    margin: 10px 0;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 40px 30px;
    }

    .policy-content h1 {
        font-size: 36px;
    }

    .policy-content h2 {
        font-size: 24px;
    }

    .policy-nav {
        gap: 10px;
    }

    .policy-nav a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-nav {
        padding: 15px;
    }
}

/* Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Subscription Page Styles */
.subscription-page {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: var(--background);
}

.subscription-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.subscription-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.subscription-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-content h2 i {
    color: #333;
    font-size: 24px;
}

.subscription-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.subscription-content .last-updated {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 40px;
}

.subscription-highlight {
    margin: 40px 0;
}



.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.single-plan-card {
    max-width: 400px;
    margin: 40px auto;
}

.single-plan-card .plan-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.single-plan-card .plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #007AFF;
}







.plan-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.plan-benefits {
    list-style: none;
    text-align: left;
}

.plan-benefits li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.plan-benefits i {
    color: #007AFF;
    font-size: 14px;
}

.plan-note {
    margin-top: 25px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.subscription-content .contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.subscription-content .contact-info p {
    margin: 10px 0;
}

.subscription-content .contact-info a {
    color: #666;
    text-decoration: none;
}

.subscription-content .contact-info a:hover {
    color: #333;
    text-decoration: underline;
}

/* EULA Page Styles */
.eula-page {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: var(--background);
}

.eula-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.eula-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.eula-intro {
    background: var(--background-alt);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.eula-intro p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.eula-section {
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.eula-section:last-child {
    border-bottom: none;
}

.eula-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eula-section h2 i {
    color: var(--primary);
    font-size: 24px;
}

.eula-section p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.eula-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.eula-section li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.eula-content .contact-info {
    background: var(--background-alt);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.eula-content .contact-info p {
    margin: 10px 0;
    color: var(--text-secondary);
}

.eula-content .contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.eula-content .contact-info a:hover {
    text-decoration: underline;
}

/* Responsive styles for subscription and EULA pages */
@media (max-width: 768px) {
    .subscription-content,
    .eula-content {
        padding: 40px 30px;
    }

    .subscription-content h1,
    .eula-content h1 {
        font-size: 36px;
    }

    .subscription-section h2,
    .eula-section h2 {
        font-size: 24px;
    }

    .plan-cards {
        grid-template-columns: 1fr;
    }

    .single-plan-card {
        max-width: 90%;
    }

    .single-plan-card .plan-card {
        padding: 30px 20px;
    }


} 