.legal-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.heading {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
}

.heading h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    margin-top: 70px;
}

.heading h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: hsl(263, 58%, 44%);
}

.heading p {
    font-size: 18px;
    color: rgb(163, 163, 163);
    margin-bottom: 35px;
}

.info {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #2E2E2E; /* Dark background */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Slightly darker shadow */
    color: #E1E1E1; /* Light gray text */
    line-height: 1.8;
}

.info h1 {
    font-size: 32px;
    color: #FFFFFF; /* White text for headings */
    margin-bottom: 20px;
    text-align: center;
}

.info h2 {
    font-size: 24px;
    color: #E0E0E0; /* Light gray for subheadings */
    margin-top: 30px;
    border-bottom: 2px solid #444444; /* Darker border for contrast */
    padding-bottom: 8px;
}

.info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.info ul {
    padding-left: 20px;
}

.info ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.info a {
    color: #4C9CFF;
    text-decoration: none;
    font-weight: 600;
}

.info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info {
        padding: 20px;
        margin: 20px;
    }

    .info h1 {
        font-size: 28px;
    }

    .info h2 {
        font-size: 22px;
    }
}
