/* 🔹 General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 🔹 Navigation */
nav {
    background-color: #007bff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* 🔹 Terms Section */
#terms {
    max-width: 800px;
    background: white;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #007bff;
}

/* 🔹 Section Headings */
h3 {
    margin-top: 20px;
    color: #0056b3;
}

/* 🔹 Paragraphs */
p {
    line-height: 1.6;
}

/* 🔹 List Styling */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* 🔹 Button Styling */
button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #218838;
}
