
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
    color: #333; /* Set default text color to dark gray */
    background-color: #f7f7f7; /* Set default background color to a light gray */
}

header {
    background-color: maroon;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
}

section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.2em;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: inline-block;
    color: #007BFF;
}

strong {
    display: block;
    text-align: auto;
    font-size: 0.9em;
    color: maroon; /* Set strong text color to maroon */
}

p {
    color: black; /* Set paragraph text color to a darker gray */
}

footer {
    text-align: center;
    color: #666;
    padding: 10px;
    background-color: #f7f7f7; /* Set footer background color to match the body */
}

/* Style the buttons */
.btn {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Additional Styles */
.privacy-section,
.terms-section,
.cookies-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    border: 2px solid maroon;
}

.terms-section {
    border: 2px solid #007BFF;
}

.cookies-section {
    border: 2px solid green;
}

.feature-list {
    margin-left: 20px;
    color: #555;
}

.feature-list li {
    margin-bottom: 8px;
}
