body {
    background-color: #2f343f;
    color: #c2c2c2;
    font-family: Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-top: 50px;
}

h1 {
    color: #FFFFFF;
    font-weight: 600;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 300;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c2c2c2;
    background-color: #1b1b1b;
    color: #c2c2c2;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 150px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    width: 70%;
    max-width: 600px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: #43ffb7;
    color: #1b1b1b;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px;
    width: 400px;
    transition: background-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;
}

.button:hover {
    background-color: #39e5a2;
}

.button:active {
    background-color: #33cc92;
}

.disclaimer {
    margin-top: 10px;
    color: #a0a0a0;
    text-align: center;
    line-height: 1.3;
}

.footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #111;
    color: #fff;
    padding: .5rem 12rem;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
}

.footer h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin: 0.3rem 0;
}

.footer-link:hover {
    color: #fff;
}
