/* Reset some default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Set a background color and font */
body {
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
/* Add or modify these styles in your existing CSS file */

/* Style the Accept button */
.accept-button {
    text-align: center;
}
/* Style for the Beta label */



.accept-button button {
    background-color: #007bff; /* Blue background color */
    color: #fff; /* White text color */
    padding: 10px 20px; /* Padding around the button */
    font-size: 18px; /* Font size */
    border: none; /* Remove button border */
    cursor: pointer; /* Add a pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.accept-button button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 32px;
    margin: 0;
}

/* Style the main content */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

p, ul {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

footer p {
    margin: 0;
}
