/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2 {
    font-weight: 600;
}

/* Header Styling */
header {
    background-color: #4caf50;
    color: white;
    padding: 1rem 2rem;
}

nav ul {
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    font-size: 1.2rem;
}

/* Terms and Conditions Section Styling */
#terms-conditions {
    padding: 2rem 1rem;
    background-color: #fff;
    margin-top: 2rem;
}

#terms-conditions .container {
    max-width: 900px;
    margin: 0 auto;
}

#terms-conditions h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

#terms-conditions p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

#terms-conditions ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

#terms-conditions ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

/* Footer Section Styling */
footer {
    background-color: #4caf50;
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    margin: 0 1rem;
    color: white;
    font-size: 1rem;
}

footer p {
    font-size: 0.9rem;
}

/* Mobile Styling */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    #terms-conditions {
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 1rem;
    }

    #terms-conditions h1 {
        font-size: 2rem;
    }

    #terms-conditions ul {
        padding-left: 10px;
    }
}
