body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7; /* Light background */
    color: #333333; /* Darker text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    background: #ffffff; /* White background for content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    margin-bottom: 40px;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #8B0000; /* Dark red color from logo */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333333;
}

.subscription-form input,
.subscription-form button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #8B0000; /* Dark red border */
    border-radius: 5px;
}

.subscription-form input {
    width: calc(50% - 10px);
}

.subscription-form button {
    background: #8B0000; /* Dark red background */
    color: #ffffff;
    cursor: pointer;
}

.about, .contact {
    margin: 40px 0;
}

.about h2, .contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #8B0000; /* Dark red color */
}

.about p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333333;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about li {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333333;
}

.contact form input, .contact form textarea, .contact form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #8B0000; /* Dark red border */
    border-radius: 5px;
}

.contact form button {
    background: #8B0000; /* Dark red background */
    color: #ffffff;
    cursor: pointer;
}

.social-media a {
    margin: 0 10px;
    color: #8B0000; /* Dark red color */
    text-decoration: none;
}

footer {
    margin-top: 40px;
}

footer p, footer a {
    font-size: 1em;
    color: #333333;
    text-decoration: none;
}
