* {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
      background: #f9f9f9;
      color: #222;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding-top: 80px;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      z-index: 999;
      box-sizing: border-box;
      width: 100vw;
    }
    .logo {
      font-weight: 800;
      font-size: 1.8rem;
      color: #f4b41a;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      gap: 10px;
      user-select: none;
    }
    nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }
    nav a, .dropbtn {
      color: #f4b41a;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
      user-select: none;
      cursor: pointer;
      position: relative;
      padding: 6px 10px;
      border-radius: 8px;
    }
    nav a:hover, .dropbtn:hover {
      color: #fff;
      text-shadow: 2px 2px 5px #f4b41a;
      background: rgba(244, 180, 26, 0.15);
    }
    .burger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      width: 32px;
      height: 24px;
      justify-content: center;
      user-select: none;
      z-index: 1100;
    }
    .burger span {
      background: #f4b41a;
      height: 4px;
      border-radius: 3px;
      transition: all 0.4s ease;
    }
    .burger span:nth-child(1) { width: 100%; }
    .burger span:nth-child(2) { width: 70%; }
    .burger span:nth-child(3) { width: 40%; }
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      width: 100%;
    }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
      width: 100%;
    }
    /* Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background: #2a5298;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
      min-width: 220px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      user-select: none;
    }
    .dropdown-content a {
      padding: 10px 20px;
      color: #f4b41a;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border-radius: 6px;
    }
    .dropdown-content a:hover {
      background: #1e3c72;
      color: #fff;
    }
    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: 0;
        background: #2c5364;
        padding: 15px 25px;
        border-radius: 15px;
        width: 100%;
        max-width: 280px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.6);
        z-index: 1000;
        display: none;
        user-select: none;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scroll-behavior: smooth;
      }
      nav.active { display: flex; }
      .burger { display: flex; }
      .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
        width: 100%;
      }
      .dropdown-content a {
        padding-left: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
        background: rgba(244, 180, 26, 0.1);
        margin: 3px 0;
        border-radius: 8px;
      }
      .dropdown-content a:hover {
        background: rgba(244, 180, 26, 0.3);
      }
      .dropdown.active .dropdown-content {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        padding-top: 8px;
        padding-bottom: 8px;
      }
    }
    main {
      max-width: 1000px;
      margin: 0 auto 60px;
      padding: 0 10px;
      flex-grow: 1;
      width: 100%;
      box-sizing: border-box;
    }
    
   /*новий стиль*/ 
    .shift-partnership,
.shift-payment-delivery,
.shift-why-us,
.shift-contact-form,
.shift-contacts {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 15px;
  user-select: none;
}

.shift-title {
  font-weight: 800;
  font-size: 2rem;
  color: #f4b41a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  border-bottom: 3px solid #f4b41a;
  padding-bottom: 7px;
}

.shift-partnership__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.shift-partnership__image {
  flex: 1 1 320px;
  max-height: 280px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
  object-fit: cover;
}

.shift-partnership__text {
  flex: 2 1 400px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #222;
}

.shift-payment-delivery {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
  color: #222;
}

.shift-payment-delivery__desc {
  margin: 0 0 25px 0;
  font-size: 1.1rem;
}

.shift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.shift-feature {
  flex: 1 1 180px;
  background: #f4b41a;
  color: #203a43;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgb(244 180 26 / 0.6);
  text-align: center;
  user-select: none;
  cursor: default;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.shift-feature i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.shift-feature:hover {
  background: #203a43;
  color: #f4b41a;
}

.shift-why-us {
  background: #203a43;
  color: #f4b41a;
  padding: 40px 20px;
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: none;
  text-align: center;
}

.shift-why-us__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.4;
}

.shift-why-us__list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
}

.shift-why-us__list li::before {
  content: "\f00c"; /* fontawesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f4b41a;
  font-size: 1.2rem;
}

.shift-contact-form {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
  
}

.shift-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.shift-contact-form__form input,
.shift-contact-form__form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
}

.shift-contact-form__form button {
  background: #f4b41a;
  color: #203a43;
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.shift-contact-form__form button:hover {
  background: #d4a417;
}

.shift-contact-form__phone {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #222;
  text-align: center;
}

.shift-contact-form__phone a {
  color: #f4b41a;
  font-weight: 700;
  text-decoration: none;
}

.shift-contact-form__phone a:hover {
  color: #fff;
}

.shift-contacts__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.shift-contacts__info {
  flex: 1 1 300px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
  color: #222;
  font-size: 1.1rem;
}

.shift-contacts__info p {
  margin-bottom: 15px;
}

.shift-contacts__info strong {
  display: block;
  margin-bottom: 6px;
}

.shift-contacts__info a {
  color: #f4b41a;
  text-decoration: none;
}

.shift-contacts__info a:hover {
  color: #fff;
}

.shift-contacts__map {
  flex: 2 1 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
  min-height: 320px;
}

.shift-contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Адаптив */
@media (max-width: 768px) {
  .shift-partnership__content,
  .shift-contacts__wrapper {
    flex-direction: column;
  }

  .shift-partnership__image,
  .shift-contacts__map {
    max-height: none;
    flex: unset;
    width: 100%;
  }

  .shift-features {
    justify-content: space-around;
  }
}
    
  .shift-repair-list {
  
  margin: 60px auto;
  padding: 0 15px;
  user-select: none;
  color: #222;
}

.shift-repair-list .shift-title {
  font-weight: 800;
  font-size: 2rem;
  color: #f4b41a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid #f4b41a;
  padding-bottom: 7px;
}

.shift-repair-list__intro {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #444;
}

.shift-repair-list__items {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #203a43;
}

.shift-repair-list__items li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}

.shift-repair-list__items li::before {
  content: "\f058"; /* fontawesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f4b41a;
  font-size: 1.2rem;
}

