body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #ffffff;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: rgb(22, 0, 75);
    text-decoration: none;
    font-weight: bold;
}

.hero {
    padding: 100px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg') center/cover no-repeat;
    color: white;
    min-height: calc(100dvh - 300px);
}
.hero > h1{
    margin-top: 145px;
}
#about div.content{
    max-width: 60dvw;
    text-align: left;
    margin-right: 100px;
}
#about>div.container{
    display: flex;
    margin-left: 100px;
    
}
#about img{
    width: 40dvw;
}

#services{
    
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

.content-section {
    padding: 60px 85px;
    text-align: center;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    width: 20%;
    margin: 16px 60px;
    box-shadow: 4px 2px 17px;
    padding: 39px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea, form button {
    padding: 10px;
    font-size: 16px;
    width: 100%;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 10px 0;
}
