.legal-page {
    background-color: #f5f5f5;
    color: #333;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

article {
    margin-bottom: 3rem;
}

article:last-child {
    margin-bottom: 0;
}

article h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

article p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 1rem;
}

article ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

article li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

article li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

article strong {
    color: white;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }

    .legal-content h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .legal-section {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.8rem;
    }

    article h3 {
        font-size: 1.3rem;
    }

    article p,
    article li {
        font-size: 1rem;
    }
} 