body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===== Block: Header ===== */
.header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  border-radius: 8px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  color: #555;
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  text-decoration: none;
  font-weight: 500;
}

.nav__link {
  text-decoration: none;
  color: #666;
  font-size: 16px;
}

.header__nav-link:hover {
  text-decoration: underline;
}

/* ===== Block: Hero ===== */
.hero {
  background: url("../images/hero-bike.jpg") no-repeat center center/cover;
  text-align: center;
  color: #212121;
  padding: 5rem 1rem;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero__button {
  background: #ff5722;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero__button:hover {
  background: #e64a19;
}

/* ===== Block: Services ===== */
.services {
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

.service__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service__list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #ddd;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services__item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  width: calc(33.333% - 1rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.services__item-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.services__item-text {
  font-size: 1rem;
  color: #666;
}

/* ===== Block: About ===== */
.about {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about__text {
  font-size: 1rem;
  color: #555;
}

/* ===== Block: Contact ===== */
.contact {
  background: #333;
  color: #fff;
  display: grid;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 420px;
  gap: 1rem;
}

.contact__label {
  font-size: 1rem;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact__button {
  background: #ff5722;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact__button:hover {
  background: #e64a19;
}

/* ===== Block: Footer ===== */
.footer {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  border-radius: 8px;
}

.social__links {
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
}

.social__link {
  color: #666;
  text-decoration: none;
}
