* {
    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: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 50%, #fff7ed 100%);
    min-height: 100vh;
}

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

header {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header .tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
}

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

.link-card {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.link-card h2 {
    color: #7c3aed;
    margin-bottom: 10px;
}

.link-card p {
    color: #666;
}

.about {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.about h2 {
    color: #7c3aed;
    margin-bottom: 15px;
}

footer {
    background: #1f2937;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Legal page styles */
.legal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.legal-content h1 {
    color: #7c3aed;
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.back-link {
    display: inline-block;
    color: #7c3aed;
    text-decoration: none;
    margin-bottom: 20px;
}

.back-link:hover {
    text-decoration: underline;
}
