/* Terms & Privacy Page Styles */
.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ff5733, #cc0000);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 24px rgba(255,0,0,0.1);
}

.legal-header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
}

.section-title {
    color: #ff5733;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
    gap: 15px;
}

.section-title i {
    font-size: 1.4em;
}

.highlight {
    color: #ff5733;
    font-weight: bold;
}

.price-tag {
    background: #ff5733;
    margin-top: 10px;

    color: white;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff5733;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255,0,0,0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.1);
}
ul {
    list-style: none;
}
@media (max-width: 768px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-header h1 {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.4em;
    }
}
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; 
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #fd3e3e, #ff0303);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.back-home-btn:hover {
    background: linear-gradient(90deg, #ff0303, #fd3e3e);
    transform: translateY(-2px);
    border: 2px solid #fff;
}

.back-home-btn i {
    font-size: 18px;
}
