body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #111810;
    color: #fff;
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-color: #111810;
    /*background: url('') no-repeat center center/cover;*/
    color: #fff;
    padding: 20rem 0;
    text-align: left;
}

.contact button[type="submit"] {
    background-color: #111810;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}


.button {
    background-color: #c30010;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.contact button[type="submit"]:hover {
    background-color: #c30010;
}


}


.hero {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.8); !* Adjust the alpha value to control the darkness *!*/
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
}


.hero button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

section {
    padding: 30rem 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}


.contact {
    padding: 9rem 0;
}


h2 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

form label {
    font-weight: bold;
}

form input,
form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #111810;
    color: #484848;
    text-align: left;
    padding: 3rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 80px; /* Adjust the value to your desired size */
    height: auto;
    margin-right: 10px; /* Add some spacing between the logo and the heading */
}

.logo-container h1 {
    font-size: 20px; /* Adjust the font size of the heading to match the smaller logo */
    font-style: italic; /* Add this line to make the font italic */
    font-weight: bold;
}








