/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
nav {
    background-color: #444;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
#showcase {
    background: #570400;
    color: #fff;
    text-align: center;
    padding: 5em 0;
}
#showcase h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
#showcase p {
    font-size: 1.5em;
}
#content {
    padding: 20px;
    background-color: #fff;
}
.service {
    margin-bottom: 20px;
}
.service h2 {
    color: #333;
    margin-bottom: 10px;
}
.service p {
    color: #666;
}
.cta {
    /* background-color: #333; */
    background-color: #570400;
    color: #fff;
    padding: 3em 0;
    text-align: center;
}
.cta h2 {
    margin-bottom: 20px;
}
.cta a {
    color: #fff;
    background-color: #444;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}








.contact-form {
    background-color: #fff;
    padding: 40px 20px;
    max-width: 600px;
    margin: 3em auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

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

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input, 
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.contact-form button {
    padding: 12px;
    background-color: #680601;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 2em;
    transition: background-color 0.3s ease;
}

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

