 body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #f8f8f8;
    }
    .hero-header {
      position: relative;
      width: 100%;
      height: 90vh;
      min-height: 600px;
      background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%), url('https://nolte-dealers.ru/IMG_3354.png');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
      margin-top: 0;
    }
    .hero-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }
    .hero-header .container {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
      width: 100%;
    }
    .hero-header h1 {
      font-size: clamp(2.5rem, 8vw, 5.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin: 0 0 20px 0;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
      max-width: 800px;
    }
    .hero-header .hero-subhead {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 500;
      max-width: 600px;
      margin-bottom: 30px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      opacity: 0.95;
    }
    .hero-header .hero-button {
      display: inline-block;
      background-color: #ffd200;
      color: #000;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .hero-header .hero-button:hover {
      background-color: transparent;
      color: #ffd200;
      border-color: #ffd200;
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .hero-header {
        height: 70vh;
        min-height: 500px;
        background-position: 70% center;
        align-items: flex-end;
        padding-bottom: 40px;
      }
      .hero-header::before {
        background: rgba(0, 0, 0, 0.5);
      }
      .hero-header h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 10px;
      }
      .hero-header .hero-subhead {
        font-size: 1rem;
        margin-bottom: 20px;
      }
      .hero-header .hero-button {
        padding: 12px 30px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero-header {
        height: 60vh;
        min-height: 450px;
        background-position: 65% center;
      }
    }

    .fixed.top-6.z-header {
      transition: transform 0.3s ease, opacity 0.3s ease;
      position: fixed;
      top: 1.5rem;
      z-index: 50;
    }
    .header-hidden {
      transform: translateY(-150%);
      opacity: 0;
      pointer-events: none;
    }
    .header-visible {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .dealer-search-container {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      margin-bottom: 30px;
    }
    
    .dealer-search-controls {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    
    .dealer-search-input {
      flex: 1;
      min-width: 300px;
      padding: 16px 20px;
      border: 2px solid #f0f0f0;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s;
    }
    
    .dealer-search-input:focus {
      border-color: #ffd200;
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.2);
    }
    
    .dealer-search-button {
      background-color: #ffd200;
      color: #000;
      border: none;
      padding: 16px 32px;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
      font-size: 16px;
    }
    
    .dealer-search-button:hover {
      background-color: #000;
      color: #ffd200;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    
    .dealer-filters {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    
    .dealer-filter {
      padding: 10px 20px;
      background: #f5f5f5;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 14px;
      font-weight: 500;
    }
    
    .dealer-filter.active {
      background: #ffd200;
      color: #000;
    }
    
    .dealer-filter:hover {
      background: #e0e0e0;
    }
    
    .dealer-filter.active:hover {
      background: #ffd200;
    }
    
    .map-container {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .dealer-search-map {
      height: 600px;
      background-color: #f5f5f5;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      scroll-margin-top: 100px;
    }
    
    #dealer-map {
      width: 100%;
      height: 100%;
    }
    
    .dealer-list-container {
      background-color: #fff;
      border-radius: 20px;
      padding: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      height: 600px;
      overflow-y: auto;
      position: relative;
    }
    
    .dealer-list-container::-webkit-scrollbar {
      width: 8px;
    }
    
    .dealer-list-container::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
    }
    
    .dealer-list-container::-webkit-scrollbar-thumb {
      background: #ffd200;
      border-radius: 4px;
    }
    
    .dealer-list-container::-webkit-scrollbar-thumb:hover {
      background: #e6c000;
    }
    
    .dealer-list-header {
      padding: 25px 25px 15px;
      border-bottom: 1px solid #f0f0f0;
      position: sticky;
      top: 0;
      background: white;
      border-radius: 20px 20px 0 0;
      z-index: 10;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.95);
    }
    
    .dealer-list-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .dealer-count {
      color: #666;
      font-size: 14px;
    }
    
    .dealer-list {
      padding: 0 25px 25px;
    }
    
    .dealer-item {
      border-bottom: 1px solid #f0f0f0;
      padding: 20px 0;
      cursor: pointer;
      transition: all 0.3s;
      border-radius: 12px;
      margin-bottom: 5px;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .dealer-item:hover {
      background-color: #f9f9f9;
      transform: translateX(5px);
    }
    
    .dealer-item:last-child {
      border-bottom: none;
    }
    
    .dealer-name {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 8px;
      color: #1a1a1a;
      display: flex;
      align-items: center;
    }
    
    .dealer-city {
      background: #ffd200;
      color: #000;
      padding: 2px 8px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      margin-left: 10px;
    }
    
    .dealer-address {
      color: #666;
      margin-bottom: 12px;
      font-size: 15px;
      display: flex;
      align-items: center;
    }
    
    .dealer-address:before {
      content: "📍";
      margin-right: 8px;
    }
    
    .dealer-contact {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .dealer-phone, .dealer-email, .dealer-website {
      color: #000;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: all 0.3s;
    }
    
    .dealer-phone:before {
      content: "📞";
      margin-right: 6px;
    }
    
    .dealer-email:before {
      content: "✉️";
      margin-right: 6px;
    }
    
    .dealer-website:before {
      content: "🌐";
      margin-right: 6px;
    }
    
    .dealer-phone:hover, .dealer-email:hover, .dealer-website:hover {
      color: #ff6b00;
    }
    
    @media (max-width: 1024px) {
      .map-container {
        grid-template-columns: 1fr;
      }
      .dealer-list-container {
        height: 400px;
      }
    }
    
    @media (max-width: 768px) {
      .dealer-search-controls {
        flex-direction: column;
      }
      .dealer-search-input {
        min-width: 100%;
      }
      .dealer-filters {
        justify-content: center;
      }
    }
    
    .map-info-window {
      padding: 15px;
      max-width: 280px;
    }
    .map-info-window h3 {
      margin: 0 0 10px 0;
      font-size: 16px;
      color: #1a1a1a;
      font-weight: 600;
    }
    .map-info-window p {
      margin: 6px 0;
      font-size: 14px;
      color: #666;
    }
    .map-info-window .clickable-phone,
    .map-info-window .clickable-email {
      color: #0066cc;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .map-info-window .clickable-phone:hover,
    .map-info-window .clickable-email:hover {
      text-decoration: underline;
    }
    .clickable-phone:before {
      content: "📞";
      margin-right: 6px;
    }
    .clickable-email:before {
      content: "✉️";
      margin-right: 6px;
    }
    .dealer-website {
      color: #0066cc;
    }
    .loading {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      font-size: 18px;
      color: #666;
    }
    .location-button {
      background-color: #fff;
      border: 2px solid #f0f0f0;
      border-radius: 12px;
      padding: 16px 20px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .location-button:hover {
      border-color: #ffd200;
    }

    .seo-article {
      background-color: #ffffff;
      border-radius: 32px;
      padding: 3rem 2.5rem;
      margin: 2rem 0 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      border: 1px solid #f0f0f0;
    }

    .seo-article h2 {
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      color: #1a1a1a;
      position: relative;
      display: inline-block;
    }
    .seo-article h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100px;
      height: 4px;
      background: #ffd200;
      border-radius: 2px;
    }

    .seo-article h3 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 2.5rem 0 1.2rem;
      color: #1a1a1a;
    }

    .seo-article h4 {
      font-size: 1.3rem;
      font-weight: 600;
      margin: 1.8rem 0 0.8rem;
      color: #222;
    }

    .seo-article p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
      margin-bottom: 1.5rem;
    }

    .seo-article .lead {
      font-size: 1.3rem;
      font-weight: 500;
      color: #444;
      border-left: 6px solid #ffd200;
      padding-left: 2rem;
      margin: 2rem 0 2.5rem;
      background: #fafafa;
      padding: 1.5rem 2rem;
      border-radius: 0 30px 30px 0;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      margin: 2.5rem 0;
    }

    .advantage-card {
      background: #f9f9f9;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      transition: all 0.3s ease;
      border: 1px solid #eee;
    }
    .advantage-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(255,210,0,0.15);
      border-color: #ffd200;
    }
    .advantage-icon {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .advantage-card h4 {
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0 0 0.8rem 0;
    }
    .advantage-card p {
      font-size: 1rem;
      margin: 0;
      color: #555;
    }

    .tips-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 2rem 0;
    }
    .tip-item {
      background: #f2f2f2;
      padding: 1.8rem;
      border-radius: 24px;
    }
    .tip-number {
      background: #ffd200;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .faq-item {
      background: #f6f6f6;
      border-radius: 20px;
      padding: 1.5rem 2rem;
      margin-bottom: 1.2rem;
      border-left: 4px solid #ffd200;
    }
    .faq-question {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .faq-answer {
      color: #444;
      line-height: 1.6;
    }

    .cta-block {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      border-radius: 40px;
      padding: 3rem;
      margin: 3rem 0 1rem;
      text-align: center;
      color: white;
    }
    .cta-block p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: #fff;
      opacity: 0.95;
    }
    .cta-button {
      display: inline-block;
      background-color: #ffd200;
      color: #1a1a1a;
      font-weight: 700;
      font-size: 1.3rem;
      padding: 1.2rem 4rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s;
      border: 2px solid transparent;
    }
    .cta-button:hover {
      background-color: transparent;
      color: #ffd200;
      border-color: #ffd200;
      transform: scale(1.05);
    }

    .brand-history {
      display: flex;
      gap: 2rem;
      background: #fff6e0;
      border-radius: 30px;
      padding: 2rem;
      margin: 2rem 0;
      align-items: center;
      flex-wrap: wrap;
    }
    .brand-history div:first-child {
      font-size: 4rem;
      background: #ffd200;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brand-history p {
      flex: 1;
      margin: 0;
      font-size: 1.1rem;
    }

    .stats-numbers {
      display: flex;
      justify-content: space-around;
      margin: 3rem 0;
      text-align: center;
    }
    .stat-item {
      background: #fafafa;
      border-radius: 30px;
      padding: 1.8rem 1rem;
      min-width: 150px;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffd200;
    }
    .stat-label {
      font-size: 1rem;
      color: #555;
    }

    @media (max-width: 768px) {
      .seo-article {
        padding: 2rem 1.2rem;
        margin: 1rem 0 2rem;
      }
      .seo-article h2 {
        font-size: 2rem;
      }
      .seo-article h3 {
        font-size: 1.6rem;
      }
      .seo-article .lead {
        font-size: 1.2rem;
        padding: 1rem 1.2rem;
      }
      .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .tip-item {
        padding: 1.5rem;
      }
      .stats-numbers {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }
      .stat-item {
        width: 100%;
        max-width: 300px;
      }
      .brand-history {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
      }
      .brand-history div:first-child {
        margin-bottom: 1rem;
      }
      .cta-block {
        padding: 2rem 1.5rem;
      }
      .cta-block p {
        font-size: 1.2rem;
      }
      .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
      }
      .faq-item {
        padding: 1.2rem;
      }
      
      .grid-wrap {
        padding-left: 12px !important;
        padding-right: 12px !important;
      }
      
      .map-container {
        margin-bottom: 20px;
      }
      .dealer-search-container {
        padding: 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .seo-article {
        padding: 1.2rem 0.8rem;
        margin-top: 0.5rem;
      }
      .tips-grid {
        gap: 0.8rem;
      }
      .tip-item {
        padding: 1.2rem;
      }
      .seo-article h3 {
        margin: 1.5rem 0 0.8rem;
      }
    }