/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

header h1 {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 700;
}

header nav {
    display: flex;
    gap: 1.5rem;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #2563eb;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.coming-soon {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background-color: #fff;
}

.highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.highlight-card p {
    color: #64748b;
}

.cta {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1d4ed8;
}

/* Page Header */
.page-header {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.page-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: #fff;
}

.feature-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.feature-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.feature-category ul {
    list-style: none;
    padding-left: 0;
}

.feature-category li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.8;
}

.feature-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.feature-category li strong {
    color: #1e293b;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
    background-color: #fff;
}

.legal-content > .container > p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #1e293b;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    margin: 0;
}

footer nav {
    display: flex;
    gap: 1.5rem;
}

footer nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    header nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .page-header h2 {
        font-size: 2rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .coming-soon {
        padding: 1.5rem;
    }

    .coming-soon h3 {
        font-size: 1.5rem;
    }

    .feature-category {
        padding: 1.5rem;
    }
}

