* {
    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: #f5f5f7;
    font-size: 14px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.language-toggle a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-toggle a.active {
    color: #333;
    font-weight: bold;
    text-decoration: underline;
}

.language-toggle a:hover {
    color: #333;
}

.language-toggle .separator {
    color: #ccc;
    font-size: 14px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

h1 {
    color: #1d1d1f;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
}

h2 {
    color: #1d1d1f;
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

h3 {
    color: #1d1d1f;
    font-size: 1.1em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

a {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #000;
}

a:visited {
    color: #333;
}

ul {
    margin-bottom: 15px;
    margin-left: 30px;
}

ul li {
    margin-bottom: 8px;
}

.info-box,
.provider-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #333;
}

.info-box p,
.provider-info p {
    margin-bottom: 5px;
}

.warning-box {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #666;
}

.note {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #333;
}

.date {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.section-number {
    color: #333;
    font-weight: bold;
}

.legal-notice {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        padding-top: 50px;
    }

    h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1em;
    }

    .language-toggle {
        top: 10px;
        right: 10px;
    }
}

@media print {
    body {
        background-color: white;
    }

    .container {
        box-shadow: none;
    }

    .language-toggle {
        display: none;
    }
}
