/* General styling for the terms and conditions page */
#terms-content {
    padding: 20px;
    background-color: #f7f3c3; /* Same background as the content area */
    border-radius: 5px; /* Rounded corners for a softer look */
    line-height: 1.6; /* Improve readability with increased line height */
    font-size: 16px; /* Slightly increase font size for readability */
    color: #333; /* Use a darker color for text for better contrast */
}

/* Make sure the h1 is more prominent */
h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center; /* Center align the header */
}

/* Adding some spacing between paragraphs */
#terms-content p {
    margin-bottom: 15px;
}

/* Ensure the entire content section is not too wide */
#terms-content {
    max-width: 800px;
    margin: 0 auto; /* Center the content on the page */
}

/* Add some space between the header and the content */
h1 {
    margin-top: 20px;
}
