.dark-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 4px solid #007bff;
}

.dark-bg h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0;
    font-size: 2.8rem;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}

.legal-section {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-number {
    color: #007bff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-right: 15px;
}

.legal-section h2 {
    color: #2d3436;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.section-content {
    padding-left: 3rem;
}

.legal-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}

.legal-section strong {
    color: #2d3436;
    font-weight: 500;
    font-size: 1.25rem;
}

.page-title {
    color: #2d3436;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
}

.page-title:after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: #007bff;
    margin: 20px auto 0;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .dark-bg h2 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-section {
        padding: 25px;
    }

    .section-content {
        padding-left: 1.5rem;
    }

    .page-title {
        font-size: 2.6rem;
    }

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

    .legal-section p, 
    .legal-section strong {
        font-size: 1.15rem;
    }
}