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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #e53e3e;
}

.nav-cta {
    background: #e53e3e;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #c53030;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #fafafa 0%, #f7fafc 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #e53e3e, #9f1239);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.feature-icon {
    font-size: 16px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: #e53e3e;
    color: white;
}

.btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    position: relative;
    box-shadow: 0 25px 59px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-timeline {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.3;
    transition: all 0.8s ease;
}

.timeline-item.active {
    opacity: 1;
    animation: slideIn 1s ease;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #e53e3e;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.timeline-image {
    width: 59px;
    height: 59px;
    background: linear-gradient(135deg, #e53e3e, #9f1239);
    border-radius: 8px;
    flex-shrink: 0;
}

.timeline-info {
    flex: 1;
}

.timeline-location {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.timeline-date {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #ffffff;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e, #9f1239);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-highlight {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    color: #0c4a6e;
}

.feature-highlight strong {
    color: #075985;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e53e3e, #9f1239);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-requirements,
.step-features,
.step-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement,
.feature,
.social-feature {
    font-size: 14px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content Policy Section */
.content-policy {
    padding: 100px 0;
    background: #ffffff;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.policy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.policy-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.policy-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
}

.policy-icon {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.policy-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.policy-item ul {
    list-style: none;
    padding: 0;
}

.policy-item li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.policy-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

.policy-note {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 20px;
    font-size: 15px;
    color: #7f1d1d;
    text-align: left;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.download-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-subtitle {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.download-btn img {
    height: 60px;
    transition: transform 0.2s ease;
}

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

.download-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #a0aec0;
}

.feature-check {
    color: #48bb78;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #e53e3e;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.footer-disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #4a5568;
}

.footer-simple {
    text-align: center;
    font-size: 14px;
    color: #718096;
}

.footer-simple a {
    color: #a0aec0;
    text-decoration: none;
    margin: 0 8px;
}

.footer-simple a:hover {
    color: #e53e3e;
}

/* Legal Pages */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #f8fafc;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
}

.legal-notice,
.privacy-summary {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-top: 20px;
}

.privacy-summary h3 {
    color: #7f1d1d;
    font-size: 18px;
    margin-bottom: 12px;
}

.privacy-summary ul,
.legal-notice {
    color: #7f1d1d;
    font-size: 15px;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e53e3e;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin: 32px 0 16px;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Special Notice Boxes */
.important-notice,
.disclaimer-box,
.warning-box,
.liability-disclaimer,
.privacy-warning,
.liability-box,
.indemnification-box,
.terms-acknowledgment,
.privacy-commitment {
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.important-notice {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}

.important-notice h4 {
    color: #0c4a6e;
    margin-bottom: 12px;
}

.important-notice ul,
.important-notice p {
    color: #075985;
}

.disclaimer-box,
.warning-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.disclaimer-box strong,
.warning-box strong {
    color: #7f1d1d;
}

.privacy-warning {
    background: #fffbeb;
    border: 2px solid #fed7aa;
}

.privacy-warning h3 {
    color: #9a3412;
}

.privacy-warning p {
    color: #a16207;
}

.liability-box,
.indemnification-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

.liability-box h3,
.indemnification-box h3 {
    color: #1a1a1a;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    padding: 16px;
    background: #e53e3e;
    color: white;
    border-radius: 8px;
}

.terms-acknowledgment,
.privacy-commitment {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.terms-acknowledgment h3,
.privacy-commitment h3 {
    color: #14532d;
    margin-bottom: 16px;
}

.terms-acknowledgment p,
.privacy-commitment p {
    color: #166534;
}

/* Support Page */
.support-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #f8fafc;
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.support-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.support-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.support-section {
    margin-bottom: 80px;
}

.support-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: #f8fafc;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #4a5568;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer>div {
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

.device-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.instruction-group {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.instruction-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.instruction-group ol {
    padding-left: 20px;
}

.instruction-group li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #4a5568;
}

/* Policy Guide */
.policy-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.policy-card {
    border-radius: 16px;
    padding: 30px;
    border: 2px solid;
}

.policy-card.approved {
    background: #f0fdf4;
    border-color: #22c55e;
}

.policy-card.rejected {
    background: #fef2f2;
    border-color: #ef4444;
}

.policy-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.policy-card.approved h3 {
    color: #15803d;
}

.policy-card.rejected h3 {
    color: #dc2626;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.policy-card.approved li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.policy-card.rejected li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Penalty System */
.penalty-info {
    background: #fffbeb;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.penalty-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #9a3412;
}

.penalty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.penalty-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.penalty-level {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin: 0 auto 12px;
}

.penalty-level.low {
    background: #f59e0b;
}

.penalty-level.medium {
    background: #ef4444;
}

.penalty-level.high {
    background: #7c2d12;
}

.penalty-item p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
}

.penalty-note {
    font-size: 14px;
    color: #9a3412;
    font-weight: 600;
    font-style: italic;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #e53e3e;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #c53030;
}

.response-time {
    font-size: 13px;
    color: #718096;
    font-style: italic;
}

/* Technical Requirements */
.tech-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.requirement-group h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.requirement-group ul {
    list-style: none;
    padding: 0;
}

.requirement-group li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.requirement-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

.requirement-group strong {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-features {
        flex-direction: column;
        gap: 20px;
    }

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

    .legal-content {
        padding: 40px 20px;
    }

    .support-content {
        padding: 40px 20px;
    }

    .device-instructions {
        grid-template-columns: 1fr;
    }

    .policy-guide {
        grid-template-columns: 1fr;
    }

    .penalty-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tech-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .legal-header {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .support-header h1 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Print Styles for Legal Pages */
@media print {

    .nav,
    .footer,
    .btn {
        display: none;
    }

    .legal-page,
    .support-page {
        padding-top: 0;
    }

    body {
        font-size: 12px;
        line-height: 1.4;
    }

    .legal-content,
    .support-content {
        box-shadow: none;
        padding: 20px 0;
    }
}

/* Location Slideshow Styles */
.location-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.location-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.location-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.location-slide.prev {
    transform: translateX(-100%);
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    color: white;
    border-radius: 0 0 20px 20px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.location-icon {
    font-size: 14px;
}

.location-name {
    font-weight: 600;
    font-size: 14px;
}

.location-date {
    font-size: 12px;
    opacity: 0.8;
}

.timeline-navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: white;
    transform: scale(1.2);
}

.timeline-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Animation for slide transitions */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.location-slide.slide-in-right {
    animation: slideInRight 0.6s ease-in-out;
}

.location-slide.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out;
}

/* Fixed Download Button Styles - Using Local Images */

/* Hero Download Buttons */
.download-buttons-hero {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.download-btn-hero {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;

    width: 259px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.download-btn-hero img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.download-btn-hero:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.secondary-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Quick Download Section */
.download-quick {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.download-quick-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.download-quick-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Main Download Buttons - Perfect Size Match with Local Images */
.download-buttons-main {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn-main {
    display: block;
    transition: transform 0.3s ease;

    width: 259px;
    background: transparent;
    border-radius: 8px;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

/* Perfect sizing for both local badge images */
.download-btn-main img {

    object-fit: contain;
    display: block;
}

.download-btn-main:hover {
    transform: translateY(-3px);
}

/* Download Stats */
.download-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile First Approach */
@media (max-width: 768px) {
    .hero-cta {
        margin-top: 30px;
    }

    .download-buttons-hero {
        gap: 12px;
        margin-bottom: 15px;
    }

    .download-btn-hero {

        width: 220px;
    }

    .download-btn-hero img {


        width: 220px;
    }

    .download-quick {
        padding: 40px 0;
    }

    .download-quick-content h2 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .download-quick-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .download-buttons-main {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .download-btn-main {
        width: 220px;

    }

    .download-btn-main img {
        width: 220px;
    }

    .download-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .download-buttons-hero {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .download-btn-hero {
        width: 220px;
    }

    .download-btn-hero img {
        width: 220px;
    }

    .download-btn-main {
        width: 100%;
        max-width: 220px;
        height: 59px;
    }

    .download-btn-main img {
        width: 220px;
    }

    .download-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Footer download buttons */
.download .download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.download .download-btn {
    height: 60px;
    width: 180px;
    background: transparent;
    border-radius: 8px;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.download .download-btn img {
    height: 60px;
    width: 180px;
    object-fit: contain;
}

.download .download-btn:hover {
    transform: translateY(-2px);
}