/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: white;
  color: #000;
  text-align: center;
}

.logo-wrap{
max-width: 500px;
margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

.logo-wrap img{
  width: 350px;
}

.menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-section {
  padding: 40px 20px;
}

.hero-text {    
	font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid black;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  color: black;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: black;
  color: white;
}

.car-image img {
  width: 90%;
  max-width: 1200px;
  height: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 30px 0;
  font-size: 1.5rem;
}

.footer-nav a{
  color:#000;
  text-decoration:none!important;
}

@media only screen and (max-width: 520px) {

	.hero-text {
		font-size: 2rem;
	}
	
	.logo-wrap img {
		width: 250px;
	}
	
	.footer-nav{
		position: absolute;
		bottom: 0px;
		left: 0;
		right: 0;
	}
}

