/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
h1 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* About Us Page */
.about-us {
    padding: 30px;
    background-color: #e9ecef;
}

.about-us p {
    margin-bottom: 15px;
}

/* Terms & Conditions Page */
.terms-conditions {
    padding: 30px;
    background-color: #e9ecef;
}

.terms-conditions ul {
    list-style-type: disc;
    margin-left: 20px;
}

.terms-conditions li {
    margin-bottom: 10px;
}

/* Policy Page */
.policy {
    padding: 30px;
    background-color: #e9ecef;
}

.policy ul {
    list-style-type: disc;
    margin-left: 20px;
}

.policy li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }
}

