.page-hero {
    padding-top: 160px !important;
}

.last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    font-style: italic;
}

.legal-content {
    padding: 80px 0;
}

.content-wrapper {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-section ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #7b2ff7;
    font-size: 20px;
}

.legal-section ul li strong {
    color: #00d4ff;
}

.legal-section a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #7b2ff7;
    text-decoration: underline;
}

.contact-info-box {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box strong {
    color: #00d4ff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 140px !important;
    }

    .content-wrapper {
        padding: 40px 30px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}