/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

header {
    color: white;
    text-align: center;
    padding: 20px 0;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3 {
    color: #333;
}

p, ul {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

ul {
    padding-left: 20px;
}

ul li {
    list-style-type: disc;
}

/* Terms Section */
#terms-of-use {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(104, 5, 5, 0.1);
}

/* Privacy Section */
#privacy-policy {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(104, 5, 5, 0.1);
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin-top: 20px;
}

/* Footer Styles */
footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: lightgray;
}

.footer-main-link {
    margin-bottom: 10px;
}

.footer-main-link a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-main-link a:hover {
    color: lightgray;
}

.footer-main-link p {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    footer {
        position: relative;
        padding: 10px 0;
    }
}
