body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    /* padding: 20px; */
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
h1 span {
    color: #4CAF50;
}
.subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature {
    width: 45%;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    border: 2px solid black;
    
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 43px;
}

.logo img{
    height: 60px;
    width: 60px;
    margin-left: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    padding: 10px 40px;
    text-decoration: none;
    display: block;
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    width: 175px;
}

.dropdown-menu a {
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a:hover {
    background-color: #555;
}

/* #icon1{
    border: 2px solid black;
    height: 40px;
    width: 40px;
    translate: -70px -60px;
    background: green;
} */
/* .icon {
    width: 30px;
    height: 30px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
} */
/* .icon img {
    width: 30px;
    height: 30px;
} */
.feature-text {
    text-align: left;
}
.feature-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.car-image {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
}
