.legal-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 140, 90, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.legal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.legal-icon:hover {
    transform: rotate(5deg) scale(1.05);
}

.legal-icon.privacy-icon {
    border-radius: 50%;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content {
    padding: 60px 0 100px;
    background: var(--primary-color);
    position: relative;
    z-index: 2;
}

.legal-card {
    background: linear-gradient(145deg, var(--secondary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-right: 20px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(180deg, var(--accent-color), #e55a2b);
    border-radius: 3px;
}

.legal-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-section ul li {
    color: var(--text-muted);
    padding: 12px 30px 12px 0;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.legal-section ul li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.legal-section ul li strong {
    color: var(--text-light);
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 107, 53, 0.08);
    border-radius: 15px;
    padding: 20px 25px !important;
    margin-top: 20px !important;
}

.contact-info li {
    border-bottom: none !important;
    padding: 10px 0 10px 30px !important;
}

.contact-info li::before {
    content: none !important;
}

.contact-info li i {
    color: var(--accent-color);
    margin-left: 10px;
}

.legal-footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .legal-hero {
        padding: 150px 0 60px;
    }

    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 130px 0 50px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-hero p {
        font-size: 1rem;
    }

    .legal-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .legal-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}