body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a; /* Dark background */
color: #e6e6e6; /* Light text color */
text-align: center;
box-sizing: border-box;
}
header {
background-color: #333; /* Dark header */
padding: 30px 0;
}
header h1 {
font-size: 3.2em;
margin: 0;
color: #fff; /* White text for header */
}
header p {
font-size: 1.2em;
color: #ccc; /* Light gray for header paragraph */
}
.main-content {
padding: 50px 10%;
margin-bottom: 80px; /* Space between content and footer */
}
h2 {
font-size: 2.5em;
color: #fff; /* White for subheadings */
margin-bottom: 20px;
}
p {
font-size: 1.2em;
line-height: 1.6;
margin: 20px 0;
}
.cta-button {
background-color: #6a6a6a; /* Button background */
color: #fff; /* Button text color */
text-decoration: none;
padding: 15px 30px;
border-radius: 5px;
font-size: 1.2em;
display: inline-block;
margin-top: 30px;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #888; /* Button hover effect */
}
footer {
background-color: #444; /* Slightly lighter dark gray for footer */
padding: 40px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
color: #ccc; /* Light gray for footer text */
font-size: 1em;
}
.contact-info {
text-align: center;
font-size: 1.1em;
margin-top: 20px;
}
.contact-info a {
color: #ccc; /* Link color */
text-decoration: none;
margin: 5px 10px;
}
.contact-info a:hover {
color: #fff; /* Link hover color */
}
.no-bullets {
  list-style-type: none;
  list-style-image: none;
  list-style-position: outside;
  padding-left: 0pt;
}