/* terms.css */

/* Body styling specific to the terms page */
.terms-body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 20px auto;
    background-color: #ffffff; /* White background for better contrast */
    color: #333;
    padding: 30px;
    border-radius: 10px; /* Rounded corners for a softer look */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Max width for better readability */
}

/* Headings specific to terms */
.terms-body h1 {
    color: #007BFF;
    margin-bottom: 20px;
    text-align: center; /* Centered for emphasis */
}

.terms-body h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #007BFF; /* Underline for section headers */
    padding-bottom: 5px; /* Space between text and underline */
}

/* Paragraph styling specific to terms */
.terms-body p {
    margin-bottom: 15px;
    color: #444; /* Slightly darker for readability */
}

/* Links specific to terms */
.terms-body a {
    color: #007BFF;
    text-decoration: none;
}

.terms-body a:hover {
    text-decoration: underline;
}

/* List items specific to terms */
.terms-body ul {
    list-style-type: disc; /* Standard bullet points for terms */
    padding-left: 20px;
}

.terms-body li {
    margin-bottom: 10px;
}

/* Additional spacing for content */
.terms-body .terms-section {
    margin-bottom: 20px;
}
