body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    min-height: 100vh;
    background-color: rgb(250, 250, 250);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2 {
    color: rgb(0, 51, 102);
}

.content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: rgb(97, 97, 97);
}

.footer-link {
    color: rgb(52, 134, 229);
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    color: rgb(41, 108, 184);
}

/* Styles from index.html */
.header {
    padding-top: 20px;
    font-size: 48px;
    color: rgb(0, 51, 102);
    font-weight: 700;
}

.title {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1;
}

.button-container {
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    padding: 30px 50px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 2px solid rgb(209, 209, 209);
}

.cta-button {
    color: rgb(255, 255, 255);
    background-color: rgb(52, 134, 229);
    cursor: pointer;
    padding: 18px 36px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: rgb(41, 108, 184);
}

.footer-content {
    width: 100%;
}

.footer-wrapper {
    padding-bottom: 20px;
    padding-top: 20px;
}

.disclaimer {
    padding-left: 16px;
    padding-right: 16px;
    margin: auto;
    font-size: 12px;
    color: rgb(97, 97, 97);
}

.disclaimer-text {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 10px;
}

.footer-links-container {
    padding-left: 16px;
    padding-right: 16px;
    margin: auto;
    color: rgb(97, 97, 97);
}

.footer-links {
    border-top: 2px solid rgba(151, 151, 151, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-links-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link-item {
    margin: 0 10px 10px;
}

.copyright {
    margin-top: 10px;
    font-weight: 300;
}

/* Styles for form elements (from ccpa.html) */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, select, textarea {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: rgb(52, 134, 229);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(41, 108, 184);
}