.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    color: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00eaff, #7c7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
}

.legal-page h2 {
    font-size: 1.5rem;
    color: #00eaff;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.85);
}

.legal-page ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-page li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.legal-page li:before {
    content: '•';
    color: #00eaff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-page strong {
    color: #00eaff;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #00eaff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #00d4e6;
    transform: translateX(-5px);
}

@media(max-width:600px){
    .legal-page {
        padding: 40px 15px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
    
    .legal-page h2 {
        font-size: 1.3rem;
    }
}
