
 
  body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #222;
    margin-top: 20px;
  }
  .description-container {
    max-width: 1500px;
   
    margin: 0 auto;
    padding: 20px 15px;
  }
  /* headings */
  .desc-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e466e;
    margin-bottom: 0.5rem;
    border-left: 5px solid #e67e22;
    padding-left: 20px;
  }
  h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
  }
  h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #e67e22;
  }
  .city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
  }
  .city-link {
    display: inline-block;
    background: white;
    padding: 8px 16px;
    border-radius: 40px;
    text-decoration: none;
    color: #1e466e;
    font-weight: 500;
    border: 1px solid #ddd;
    transition: all 0.2s;
    text-align: center;
  }
  .city-link:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
  }
  .specs-table {
    width: 100%;
    background: #f9f9f9;
    margin: 20px 0;
    border-collapse: collapse;
  }
  .specs-table td, .specs-table th {
    border: 1px solid #ddd;
    padding: 10px;
  }
  .specs-table th {
    background: #1e2a3a;
    color: white;
  }
  .faq-block {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 20px;
    margin: 25px 0;
  }
  @media (max-width: 768px) {
    .desc-title { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    .city-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  }
  .badge-manu {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-right: 10px;
  }
  .contact-highlight {
    background: #e67e22;
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
  }
