body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F2EDE4;
    color: #0D1A26;
}
.header {
    background-image: url(images/client-header.jpg);
    background-size: cover;
    background-position: center;
    padding: 2rem;
    color: #F2EDE4;
}
.hero {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.39);
    padding: 20px;
    border-radius: 16px;
}
a:focus{
    color:black;
}
nav {
    padding: 1rem;
    background-color:#8C857D;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.nav-row {
    width: 30%;
    padding: 10px;
    justify-content: space-between;
}
.nav-row:hover {
    margin: 0;
    border-radius: 16px;
    background-color: #a29d98;
}
.nav-row a {
    flex: 1 1 30%;
}
section {
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem;
    background-color: #BFB8AA;
}
.car-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}
.car-card {
    flex-basis: 100%;
    padding: 1rem;
    background-color: #F2EDE4;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}
.step {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    padding: 1rem;
    background-color: #161540;
    color: #F2EDE4;
}
.step h2{
    text-align: center;
    background-color:#4f4e80; 
    padding: 10px;
    border-radius: 100%;
    width: 10%
}
.geel img{
    border-radius: 16px;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: #F2EDE4;
    text-decoration: none;
}
footer{
    background-color: #161540; 
    color: #F2EDE4; 
    padding: 1rem; 
    text-align: center;
}

footer p {
    margin: 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-link:hover {
    color: #BFB8AA;
    text-decoration: underline;
}
@media (min-width: 769px) {
    nav {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: nowrap;
    }
    .geel{
       justify-content: center;
        align-items: center;
        display: flex;
    }
    .geel img{
    filter:invert();
        margin-right: 100px;;
        max-width: 30%;
        width: 30%
    }
    .info{
     border-left: 5px solid #161540;
        height: max-content;
        padding-left: 100px;
      justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .nav-row {
        width: auto;
        padding: initial;
    }
    .nav-row  {
        padding: 20px;
    }
    .step h2{
    text-align: center;
    background-color:#4f4e80; 
    padding: 10px;
    border-radius: 100%;
    width: 40px;
}
    .car-types,
    .process-steps {
        flex-direction: row;
    }
    .car-card {
        flex: 1 2 30%;
    }
    .step {
        flex: 1 1 20%;
    }
}