/* Reset and Base Styles */
* {
    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-color: #F6EFF2;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #D4658E;
}

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

.tagline {
    font-size: 1.1em;
    color: #666;
    font-style: italic;
}

.last-updated {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Main Content */
main {
    margin-bottom: 40px;
}

.card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.card h2 {
    color: #333;
    margin-bottom: 15px;
}

.links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D4658E;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #B84D76;
}

.info {
    text-align: center;
    color: #666;
    margin-top: 20px;
}

.info p {
    margin-bottom: 8px;
}

/* Legal Content */
.legal-content {
    font-size: 1em;
    line-height: 1.8;
}

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

.legal-content section {
    margin-bottom: 35px;
}

.legal-content h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-content h3 {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 8px;
    margin-top: 15px;
    font-weight: 600;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.indent {
    margin-left: 20px;
}

.back-link {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.back-link a {
    color: #D4658E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #B84D76;
}

/* Support Styles */
.support-card {
    background-color: #FDF2F6;
    border: 2px solid #D4658E;
}

.support-info {
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

.support-info a {
    color: #D4658E;
    font-weight: 600;
    text-decoration: none;
}

.support-info a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.contact-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #D4658E;
}

.contact-box a {
    color: #D4658E;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-content a {
    color: #D4658E;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.9em;
}

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

    h1 {
        font-size: 2em;
    }

    .card {
        padding: 20px;
    }

    .links {
        flex-direction: column;
    }

    .button {
        text-align: center;
    }
}

