
    * {
      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;
    }
    @media (max-width: 1024px) {
      main {
        max-width: 90vw;
      }
    }
    @media (max-width: 480px) {
      main { padding: 0 10px; }
    }
    .hero {
      position: relative;
      background: url('img/easytronic-hero.jpg') center/cover no-repeat;
      height: 40vh;
      margin: 15px 0 35px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      font-weight: 900;
      color: #f4b41a;
      text-align: center;
      padding: 0 30px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow:
        0 0 6px 2px rgba(244, 180, 26, 0.3),
        inset 0 0 10px 3px rgba(244, 180, 26, 0.2);
    }
    @media (max-width: 1024px) {
      .hero {
        height: 30vh;
        font-size: 2.2rem;
        padding: 0 20px;
      }
    }
    @media (max-width: 480px) {
      .hero {
        height: 25vh;
        font-size: 1.6rem;
        padding: 0 15px;
        line-height: 1.4;
        background-position: center center;
      }
    }
    section {
      margin-bottom: 50px;
    }
    h2 {
      margin-bottom: 20px;
      border-bottom: 3px solid #f4b41a;
      padding-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.6rem;
      user-select: none;
    }
    .content-block {
      background: #fff;
      padding: 25px 30px;
      border-radius: 15px;
      box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
      user-select: none;
    }
    ul {
      list-style: none;
      padding-left: 0;
      margin-top: 15px;
    }
    ul li {
      padding-left: 30px;
      position: relative;
      margin-bottom: 12px;
      font-weight: 600;
      color: #203a43;
      user-select: none;
    }
    ul li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #f4b41a;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      user-select: none;
      margin-top: 15px;
    }
    th, td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
      font-weight: 600;
      color: #203a43;
    }
    th {
      background: #f4b41a;
      color: #203a43;
      font-weight: 900;
    }
    tbody tr:hover {
      background: rgba(244, 180, 26, 0.15);
      cursor: default;
    }
    
.easytronic-block {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  user-select: none;
  
  margin: 60px auto 35px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.easytronic-image {
  float: left;
  width: 320px;
  height: auto;
  margin-right: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  object-fit: contain;
}

.easytronic-text {
  color: #203a43;
}

.easytronic-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #f4b41a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 0 8px rgba(244,180,26,0.5);
}

.easytronic-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

@media (max-width: 768px) {
	
	.easytronic-block {
		  margin: 15px auto 25px;
		}
	
	
  .easytronic-image {
    float: none;
    display: block;
    margin: 0 5px;
    margin-bottom:25px;
    width: 100%;
  }
  .easytronic-text {
    text-align: center;
  }
  .easytronic-text h2 {
    font-size: 1.8rem;
  }
  .easytronic-text p {
    font-size: 1rem;
  }
}   
   

.breadcrumb {
  font-size: 0.95rem;
  margin-top:25px;
 
  color: #444;
  user-select: none;
}

.breadcrumb-link {
  color: #f4b41a !important;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #fff;
}

.easytronic-cars {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
  box-shadow: inset 0 0 40px rgba(244, 180, 26, 0.1);
  user-select: none;
  box-sizing: border-box;
}

.easytronic-cars .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #203a43;
}

.easytronic-cars h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #f4b41a;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.easytronic-cars p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.easytronic-cars ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 900px;
}

.easytronic-cars ul li {
  background: linear-gradient(135deg, #f4b41a 0%, #dfa90b 100%);
  color: #203a43;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(244, 180, 26, 0.4);
  font-size: 1.1rem;
  user-select: none;
  cursor: default;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.easytronic-cars ul li:hover {
  background: linear-gradient(135deg, #f4b41a 0%, #dfa90b 100%);
  box-shadow: 0 6px 18px rgba(244, 180, 26, 0.6);
  color: #203a43;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .easytronic-cars h2 {
    font-size: 2rem;
  }
  .easytronic-cars p {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 25px;
  }
  .easytronic-cars ul {
    gap: 18px;
  }
  .easytronic-cars ul li {
    font-size: 1rem;
    padding: 12px 22px;
  }
}

@media (max-width: 480px) {
  .easytronic-cars ul {
    flex-direction: column;
    max-width: 320px;
    gap: 15px;
  }
  .easytronic-cars ul li {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }
}

.easytronic-faults {
  background: #fff;
  padding: 30px 25px;
  margin: 40px 0;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  color: #203a43;
   margin-left: auto;
  margin-right: auto;
  user-select: none;
}
.easytronic-faults h2 {
  color: #f4b41a;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.easytronic-faults p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #444;
}
.easytronic-faults ul {
  list-style: inside disc;
  margin-bottom: 20px;
  padding-left: 0;
}
.easytronic-faults ul li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.easytronic-faults ul li strong {
  color: #f4b41a;
}
@media (max-width: 768px) {
  .easytronic-faults {
    padding: 25px 15px;
    margin: 30px 10px;
  }
  .easytronic-faults h2 {
    font-size: 1.5rem;
  }
  .easytronic-faults p,
  .easytronic-faults ul li {
    font-size: 1rem;
  }
}

.why-us {
  background: linear-gradient(135deg, #203a43 0%, #0f2027 100%);
  padding: 50px 20px;
  border-radius: 15px;
  color: #f4b41a;
  text-align: center;
  max-width: 1000px;
  margin: 60px auto;
  user-select: none;
}
.why-us h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-shadow: none; /* прибрав світіння */
}
.why-us-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: rgba(244, 180, 26, 0.1);
  border: 2px solid #f4b41a;
  border-radius: 15px;
  padding: 25px 20px;
  flex: 1 1 220px;
  max-width: 260px;
  box-shadow: 0 0 10px rgba(244, 180, 26, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(244, 180, 26, 0.6);
  background: rgba(244, 180, 26, 0.2);
}
.icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #f4b41a;
  filter: none; /* прибрав розмиття */
}
.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  font-size: 1rem;
  color: #fff9d1;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .why-us-cards {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    max-width: 100%;
  }
  .why-us h2 {
    font-size: 2rem;
  }
}
.contacts-block-light {
  background: #fefefe;
  padding: 40px 25px;
  border-radius: 12px;
 
  margin: 60px auto;
  color: #222;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  user-select: none;
  text-align: center;
}

.contacts-block-light h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #203a43;
}

.contacts-wrapper-light {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-item-light {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 250px;
  min-width: 220px;
  font-size: 1.05rem;
  color: #444;
  transition: color 0.3s ease;
}

.contact-item-light i {
  font-size: 2rem;
  color: #f4b41a;
  opacity: 0.85;
}

.contact-item-light a {
  color: #203a43;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-light a:hover {
  color: #f4b41a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contacts-wrapper-light {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
  }
  .contact-item-light {
    width: 100%;
    max-width: none;
    text-align: left;
    gap: 6px;
    border-bottom: 1px solid #f4b41a;
    padding-bottom: 8px;
  }
  .contact-item-light:last-child {
    border-bottom: none;
  }
  .contact-item-light i {
    font-size: 1.4rem;
  }
}
    


