body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.maincontent {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh; /* Full height of the viewport */
    flex-direction: column;
}

.subtext {
    margin-top: 1em;
    margin-bottom: 2em;
    width: 350px;
}

.contact-button {
    display: inline-block;
    background-color: #D9D9D9;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none; /* Remove underline from link */
    color: #333333; /* Text color */
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #c0c0c0;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

header {
    background: #003366;
    color: white;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: #005bb5;
    color: white;
    padding: 50px 0;
}

.hero h2 {
    margin: 0;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ffcc00;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.info-section {
    padding: 40px 0;
    background: white;
}

.contact-section {
    background: #ddd;
    padding: 40px 0;
}

form input, form textarea {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
