/* Additional styles for terms and privacy pages */
.terms-content, .privacy-content, .wasp-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

.terms-content h1, .privacy-content h1, .wasp-page h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.terms-content h2, .privacy-content h2, .wasp-page h2 {
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

.terms-content h3, .privacy-content h3, .wasp-page h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-content p, .privacy-content p, .wasp-page p {
    margin-bottom: 15px;
}

.terms-content ul, .privacy-content ul, .wasp-page ul, .wasp-page ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content li, .privacy-content li, .wasp-page li {
    margin-bottom: 8px;
}

.terms-content a, .privacy-content a, .wasp-page a {
    color: #3498db;
    text-decoration: none;
}

.terms-content a:hover, .privacy-content a:hover, .wasp-page a:hover {
    text-decoration: underline;
}

.terms-content .section-divider, .privacy-content .section-divider {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background: #eee;
}

.powered-by {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1em;
    color: #666;
}

.powered-by a {
    color: #2e7d32;
    font-weight: 500;
}

/* WASP Page Specific Styles */
.wasp-page section {
    margin-bottom: 40px;
}

.wasp-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    margin-top: -20px;
}

.wasp-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.wasp-hero .website-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
}

.wasp-hero .website-link a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.wasp-overview {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
}

.wasp-download-section {
    padding: 60px 20px;
    text-align: center;
}

.wasp-download-card {
    display: inline-block;
    text-align: center;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.wasp-qr-code {
    text-align: center;
    margin-bottom: 25px;
}

.wasp-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.wasp-download-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    text-decoration: none;
    color: white;
}

.wasp-features, .wasp-google-signin, .wasp-journey, .wasp-legal, .wasp-contact {
    padding: 20px 0;
}

.feature-list-large {
    list-style: none;
    padding-left: 0;
}

.feature-list-large li {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #3498db;
}

.feature-list-large li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.journey-steps {
    counter-reset: journey;
    list-style: none;
    padding-left: 0;
}

.journey-steps li {
    position: relative;
    padding: 20px 20px 20px 60px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.journey-steps li::before {
    counter-increment: journey;
    content: counter(journey);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.journey-steps li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.privacy-note {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    margin-top: 20px;
}

.policy-links {
    list-style: none;
    padding-left: 0;
}

.policy-links li {
    display: inline-block;
    margin-right: 20px;
}

.policy-links a {
    display: inline-block;
    padding: 10px 25px;
    background: #3498db;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.policy-links a:hover {
    background: #2980b9;
    text-decoration: none;
}

.contact-email {
    font-size: 1.1em;
}

.contact-email a {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wasp-hero {
        padding: 40px 20px;
    }

    .wasp-hero h1 {
        font-size: 1.5em;
    }

    .wasp-overview {
        padding: 20px;
    }

    .wasp-download-section {
        padding: 40px 15px;
    }

    .wasp-download-card {
        padding: 25px;
        max-width: 280px;
    }

    .wasp-qr-code img {
        width: 150px;
        height: 150px;
    }

    .wasp-download-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .feature-list-large li {
        padding: 12px;
    }

    .journey-steps li {
        padding: 15px 15px 15px 50px;
    }

    .journey-steps li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }

    .policy-links li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .policy-links a {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wasp-overview {
        padding: 20px 15px;
    }

    .wasp-download-section {
        padding: 30px 10px;
    }

    .wasp-download-card {
        padding: 20px;
        max-width: 250px;
    }

    .wasp-qr-code img {
        width: 130px;
        height: 130px;
    }

    .wasp-download-btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* WASP Google OAuth Scope Callout Styles */
.wasp-scope-callout {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e88e5;
    margin-top: 25px;
}
.wasp-scope-callout h3 {
    margin-top: 0 !important;
    color: #0d47a1 !important;
}
.scope-list {
    margin-bottom: 0;
    padding-left: 20px;
}
.scope-list li {
    margin-bottom: 10px;
}
