/* Styles for the Terms and Conditions page */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

section h2 {
    color: #444;
    margin-top: 20px;
    font-size: 20px;
}

section p {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #222;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}
