/* terms.css */

/* General Styles for Terms of Service */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

.container {
    width: 85%;
    margin: 30px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 25px;
}

header h1 {
    font-size: 2.2em;
    color: #333;
}

header p {
    font-size: 1.1em;
    color: #777;
}

.logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 1.6em;
    margin-top: 30px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

p, ul {
    font-size: 1em;
    color: #444
