.page-hero {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 8rem 0 4rem;
    margin-top: 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(234, 234, 234, 0.7);
}

.legal-content {
    padding: 6rem 0;
    background: var(--primary-color);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--highlight-color);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.8);
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.8);
    margin-bottom: 0.8rem;
}

.content-wrapper a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: color 0.3s;
}

.content-wrapper a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--highlight-color);
    margin: 2rem 0;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
}
