

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}

header {
background: #111;
color: white;
padding: 20px;
text-align: center;
}

nav {
margin-top: 10px;
}

nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}

nav a:hover {
color: #ff3c00;
}


.content {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #111, #333);
color: white;
}

.content h3 {
font-size: 32px;
margin-bottom: 10px;
}

.content p {
font-size: 18px;
color: #ccc;
}


.products {
display: flex;
justify-content: center;
gap: 30px;
padding: 40px;
flex-wrap: wrap;
}


.product {
background: white;
padding: 20px;
width: 220px;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 10px #111;
transition: 0.3s;
}

.product:hover {
transform: translateY(-5px);
}

.product img {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 8px;
}

.product h3 {
margin: 10px 0;
}

.product p {
font-weight: bold;
color: #ff3c00;
}

footer {
background: #111;
color: white;
text-align: center;
padding: 15px;
}


@media (max-width: 768px) {
.products {
flex-direction: column;
align-items: center;
}
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }


body {
font-family: Arial, sans-serif;
background-color: #1f1f1f;
}


header {
background: #111;
color: white;
padding: 20px;
text-align: center;
}

nav {
margin-top: 10px;
}

nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}

nav a:hover {
color: #ff3c00;
}


.scooter-sale {
padding: 60px 20px;
background: linear-gradient(135deg, #111, #1f1f1f);
color: #fff;
}

.sale-container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1100px;
margin: 0 auto;
}

.sale-text {
max-width: 500px;
}

.sale-text h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.sale-text p {
color: #ccc;
margin-bottom: 20px;
}


.btn-primary {
display: inline-block;
padding: 12px 25px;
background: #ff3c00;
color: white;
text-decoration: none;
border-radius: 30px;
transition: 0.3s;
}

.btn-primary:hover {
background: #ff5c2a;
}


.sale-image img {
width: 100%;
max-width: 400px;
border-radius: 10px;
}


.scooters {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 40px;
gap: 20px;
}


.card {
background: white;
padding: 20px;
width: 220px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 10px #000000;
transition: 0.3s;
}

.card:hover {
transform: translateY(-5px);
}

.card img {
width: 100%;
border-radius: 8px;
}

.card h3 {
margin: 10px 0;
}

.card p {
font-weight: bold;
color: #ff3c00;
}

.card button {
margin-top: 10px;
padding: 10px;
border: none;
background: #ff3c00;
color: white;
border-radius: 5px;
cursor: pointer;
}

.card button:hover {
background: #ff3c00;
}

.card a {
text-decoration: none;
color:#000000
}

.card a:hover {
color: #ff3c00;
text-decoration:  none;
}


.features {
display: flex;
justify-content: space-around;
padding: 40px;
background: #222;
color: white;
flex-wrap: wrap;
gap: 20px;
}

.feature {
background: #f4f4f4;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 250px;
transition: 0.3s;
}

.feature:hover {
transform: translateY(-5px);
}

.feature h3 {
margin-bottom: 10px;
color: #ff3c00;
}

.feature p {
color: #1f1f1f;
}


footer {
background: #1f2933;
color: white;
text-align: center;
padding: 15px;
}


@media (max-width: 768px) {
.sale-container {
flex-direction: column;
text-align: center;
}
.sale-image {
    margin-top: 20px;
}

.features {
    flex-direction: column;
    align-items: center;
}


}
