/* Legal Container */
.Legal-container {
    background-color: #222;
    color: #fff;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Heading Styles */
.Legal-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subheading Styles */
.Legal-subheading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Policy Links List */
.policies-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.policies-list li {
    margin-bottom: 15px;
}

/* Policy Links Styling */
.policies-list a {
    font-size: 1.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover Effect for Links */
.policies-list a:hover {
    color: #fff;
    text-decoration: underline;
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
