* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff5f5 0%, #fffef0 100%);
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(255, 245, 245, 0.9) 0%, 
        rgba(255, 254, 240, 0.9) 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #000;
}

header h1 a {
    color: #000;
    text-decoration: none;
}

header h1 a:hover {
    color: #ff4444;
}

.subtitle {
    font-size: 1.1em;
    color: #666;
}

main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffeded 0%, #fff9e6 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ff4444;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.cta {
    font-weight: bold;
    color: #ff4444 !important;
    font-size: 1.3em !important;
}

.links, .contact {
    margin: 40px 0;
}

h2, h3 {
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.8em;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff4444;
}

h3 {
    font-size: 1.3em;
    color: #ff6666;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #ff4444;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.links ul {
    list-style: none;
    margin-left: 0;
}

.links li {
    background: linear-gradient(135deg, #fff0f0 0%, #fffef8 100%);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    transition: transform 0.2s;
}

.links li:hover {
    transform: translateX(5px);
}

.links a {
    font-size: 1.1em;
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    font-size: 0.9em;
}

/* Legal pages */
.legal {
    max-width: 800px;
}

.legal h1 {
    font-size: 2.2em;
    color: #ff4444;
    margin-bottom: 10px;
}

.update-date {
    color: #999;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.legal p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal strong {
    color: #ff4444;
}

.legal ul ul {
    margin-top: 10px;
}

.back-link {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.back-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    main {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .legal h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }
}
