    :root {
      --orange: #F97316;
      --orange-dark: #EA580C;
      --gray-dark: #1E1E1E;
      --gray-darker: #121212;
      --gray-medium: #2A2A2A;
      --gray-border: #333;
      --headline: #F9F9F9;
      --body: #CFCFCF;
    }
    html, body {
      font-size: 18px;
      background: var(--gray-darker);
      margin: 0;
      font-family: 'Poppins', Arial, Helvetica, sans-serif;
      color: var(--body);
      line-height: 1.7;
      letter-spacing: 0.01em;
    }
    h1, h2, h3 {
      color: var(--headline);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }
    section, header, footer {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto 3rem auto;
      background: linear-gradient(180deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
      border-radius: 24px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    }
    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      background: linear-gradient(90deg, var(--gray-dark) 80%, var(--gray-medium) 100%);
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0,0,0,0.13);
      padding: 0;
    }
    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.2rem 1.5rem;
      flex-wrap: nowrap;
    }
    .navbar-logo img {
      height: 60px;
      width: auto;
      filter: drop-shadow(0 2px 6px #000);
    }
    .navbar-links {
      display: flex;
      gap: 1.8rem;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    .navbar-links li a {
      color: var(--headline);
      font-weight: 500;
      font-size: 1.05rem;
      text-decoration: none;
      transition: color 0.2s;
      padding: 0.6rem 0.8rem;
      border-radius: 8px;
      min-height: 44px;
      display: flex;
      align-items: center;
      white-space: nowrap; /* Prevent text wrapping */
    }
    .navbar-links li a:hover {
      color: var(--orange);
    }
    
    /* Special Free Stuff Button Styling */
    .free-stuff-btn {
      background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
      color: white !important;
      padding: 0.6rem 1.2rem !important;
      border-radius: 25px !important;
      font-weight: 600 !important;
      position: relative !important;
      overflow: hidden !important;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
      animation: pulse-glow 2s infinite !important;
    }

    .free-stuff-btn:hover {
      background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
    }

    .free-stuff-btn::before {
      content: '🎁' !important;
      margin-right: 0.5rem !important;
    }

    @keyframes pulse-glow {
      0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
      }
      50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7);
      }
    }
    .navbar-book-btn {
      margin-left: 1rem;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 12px;
      font-weight: bold;
      background: var(--orange);
      color: #fff;
      border: none;
      box-shadow: 0 0 8px 0 rgba(249,115,22,0.18), 0 2px 16px rgba(249,115,22,0.10);
      transition: all 0.3s;
    }
    .navbar-book-btn:hover {
      background: var(--orange-dark);
      color: #fff;
      transform: scale(1.05);
    }
    .navbar-toggle { display: none; }
    /* Hero Section */
    .hero {
      position: relative;
      min-height: 520px;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      max-width: 100vw;
      overflow: hidden;
      border-radius: 0 0 48px 48px;
      box-shadow: 0 6px 32px rgba(0,0,0,0.25);
      background: linear-gradient(90deg, #181818 60%, #232323 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 0;
      margin-bottom: 3rem;
    }
    .hero-bg, .hero-overlay { display: none; }
    .hero-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
      position: relative;
      z-index: 2;
    }
    .hero-side-image {
      max-width: 340px;
      height: auto;
      display: block;
      flex-shrink: 0;
      border-radius: 24px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.10);
      background: transparent;
    }
    .hero-content {
      flex: 1 1 400px;
      max-width: 540px;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      z-index: 2;
    }
    .hero-content h1 {
      color: #F9F9F9;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 16px rgba(0,0,0,0.18);
      text-align: left;
    }
    .hero-content p {
      color: #CFCFCF;
      font-size: 1.25rem;
      margin-bottom: 2.2rem;
      line-height: 1.6;
      text-shadow: 0 2px 8px rgba(0,0,0,0.18);
      text-align: left;
    }
    .hero-cta {
      display: flex;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .hero-cta-btn {
      background: #F97316;
      color: #fff;
      border: none;
      font-weight: bold;
      box-shadow: 0 0 16px 2px rgba(249,115,22,0.18), 0 4px 24px rgba(249,115,22,0.13);
      padding: 1.15rem 2.7rem;
      border-radius: 14px;
      font-size: 1.25rem;
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
      cursor: pointer;
      margin-top: 0.5rem;
      letter-spacing: 0.02em;
      display: inline-block;
      white-space: nowrap;
    }
    .hero-cta-btn:hover, .hero-cta-btn:focus {
      background: #EA580C;
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 0 24px 4px rgba(249,115,22,0.25), 0 6px 32px rgba(249,115,22,0.18);
      outline: none;
    }
    .btn-services.hero-cta-btn {
      background: #fff;
      color: var(--orange);
      border: 2px solid var(--orange);
      font-weight: bold;
    }
    .btn-services.hero-cta-btn:hover {
      background: var(--orange-dark);
      color: #fff;
      border-color: var(--orange-dark);
    }
    /* Trust Section */
    .trust-section {
      background: #232323;
      padding: 2.5rem 2rem;
      border-radius: 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      margin-bottom: 2.5rem;
      max-width: 1200px;
    }
    .trust-grid {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .trust-item {
      flex: 1 1 220px;
      min-width: 220px;
      max-width: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 2rem 1.2rem 1.2rem 1.2rem;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 auto;
    }
    .trust-icon {
      display: block;
      margin-bottom: 1rem;
      line-height: 1;
    }
    .trust-label {
      font-weight: 700;
      color: #1E1E1E;
      font-size: 1.13rem;
      margin-bottom: 0.4rem;
      letter-spacing: 0.01em;
    }
    .trust-caption {
      color: #555;
      font-size: 0.98rem;
      margin-top: 0.1rem;
      line-height: 1.5;
    }
    /* What is Detailing */
    #what-is-detailing {
      background: #fefefe;
      padding: 2.5rem 2rem;
      border-radius: 24px;
      margin-bottom: 2.5rem;
      max-width: 1200px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      text-align: center;
    }
    #what-is-detailing h2 {
      color: var(--orange);
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    #what-is-detailing h3 {
      color: var(--orange);
      margin-bottom: 0.25rem;
      font-size: 1.18rem;
      text-align: left;
    }
    #what-is-detailing p {
      color: #666;
      font-size: 1.08rem;
      text-align: left;
      margin-bottom: 1.2rem;
    }
    #what-is-detailing .detail-icons {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      max-width: 900px;
      margin: 2rem auto;
    }
    #what-is-detailing .detail-icons div {
      background: transparent;
      border-radius: 8px;
      padding: 0.7rem 0.2rem;
      font-size: 1.2rem;
      color: var(--orange);
      box-shadow: none;
      text-align: center;
    }
    /* Gallery */
    #gallery {
      background: #fff;
      padding: 2.5rem 2rem;
      border-radius: 24px;
      margin-bottom: 2.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      max-width: 1200px;
    }
    #gallery h2 {
      color: var(--orange);
      text-align: center;
      margin-bottom: 2rem;
      font-size: 1.3rem;
    }
    #car-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    #car-gallery > div {
      flex: 1 1 300px;
      max-width: 350px;
      text-align: center;
    }
    #car-gallery img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      margin: 0 auto;
      display: block;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    #car-gallery img:hover {
      box-shadow: 0 6px 24px rgba(249,115,22,0.13);
      transform: scale(1.03);
    }
    /* Testimonials */
    .testimonials {
      background: linear-gradient(180deg, #232323 0%, #181818 100%);
      text-align: center;
      padding: 2.5rem 2rem;
      margin-bottom: 2.5rem;
      border-radius: 24px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.18);
      max-width: 1200px;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .testimonial-grid blockquote {
      background: #181818;
      padding: 2.2rem 1.7rem 1.7rem 3.2rem;
      border-radius: 16px;
      box-shadow: 0 6px 32px rgba(255,127,17,0.07);
      border: 1px solid var(--gray-border);
      position: relative;
      font-style: italic;
      margin: 0;
      min-height: 140px;
      line-height: 1.7;
      letter-spacing: 0.01em;
      color: var(--body);
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .testimonial-grid blockquote::before {
      content: "“";
      font-size: 3.2rem;
      color: var(--orange);
      position: absolute;
      left: 1.1rem;
      top: 0.7rem;
      line-height: 1;
      font-family: serif;
      opacity: 0.7;
      text-shadow: 0 2px 8px rgba(255,127,17,0.13);
    }
    .testimonial-grid blockquote strong {
      display: block;
      margin-top: 1.2rem;
      font-style: normal;
      color: var(--headline);
      font-size: 1.08rem;
      font-weight: bold;
      letter-spacing: 0.5px;
    }
    .testimonial-grid blockquote:hover {
      box-shadow: 0 12px 36px rgba(249,115,22,0.13);
      border-color: var(--orange);
    }
    /* Ready to Choose Your Detail Section */
    .view-packages-section {
      background: linear-gradient(180deg, #232323 0%, #181818 100%);
      border-radius: 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.13);
      padding: 2.5rem 1.5rem;
      margin: 2.5rem auto;
      max-width: 900px;
      text-align: center;
    }
    .view-packages-section h2 {
      color: var(--orange);
      font-size: 1.7rem;
      margin-bottom: 0.7rem;
    }
    .view-packages-section p {
      color: #CFCFCF;
      font-size: 1.08rem;
      margin-bottom: 1.5rem;
    }
    .view-packages-section a {
      background: var(--orange);
      color: #fff;
      font-weight: bold;
      font-size: 1.15rem;
      padding: 1rem 2.5rem;
      border-radius: 14px;
      box-shadow: 0 4px 24px rgba(249,115,22,0.13);
      border: none;
      display: inline-block;
      transition: background 0.2s;
    }
    /* Still Thinking It Over Section */
    .thinking-section {
      background: #F9FAFB;
      padding: 2.5rem 1.5rem;
      margin: 2.5rem auto;
      max-width: 1000px;
      border-radius: 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      text-align: center;
    }
    .thinking-section .final-cta:hover {
      background: var(--orange-dark);
      transform: scale(1.05);
      box-shadow: 0 6px 32px rgba(249,115,22,0.3);
    }
    /* Center all text content on the page */
    body, h1, h2, h3, h4, h5, h6, p, .hero-content, .hero-content h1, .hero-content p, 
    section, .trust-label, .trust-caption, .view-packages-section, .testimonial-grid, .testimonial-grid blockquote, #gallery, #what-is-detailing {
      text-align: center !important;
    }
    /* Responsive adjustments */
    @media (max-width: 1100px) {
      .navbar-links {
        gap: 1.2rem;
      }
      .navbar-links li a {
        font-size: 1rem;
        padding: 0.5rem 0.6rem;
      }
    }
    @media (max-width: 1200px) {
      section, header, footer, .trust-section, #what-is-detailing, #gallery, .testimonials {
        max-width: 98vw;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .hero-container {
        gap: 30px;
        padding: 3rem 1rem;
      }
      .hero-side-image {
        max-width: 220px;
      }
    }
    @media (max-width: 900px) {
      html { font-size: 16px; }
      body {
        overflow-x: hidden;
      }
      .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin: 0 auto;
      }
      .hero-side-image {
        max-width: 100vw;
        width: 100%;
        height: auto;
        margin: 0 auto;
      }
      .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
      }
      .hero-content h1,
      .hero-content p {
        text-align: center;
      }
      .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        align-items: center;
        margin: 0 auto;
        padding: 0 1rem;
      }
      .hero-cta-btn {
        width: 100%;
        max-width: 280px;
        min-width: 0;
        font-size: 1.1rem;
        padding: 1.1rem 1.5rem;
        border-radius: 12px;
        text-align: center;
        margin: 0 auto;
      }
      .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
      }
      .trust-item {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1rem;
        margin: 0 auto;
      }
      #what-is-detailing {
        margin: 0 auto;
        padding: 2rem 1rem;
        text-align: center;
      }
      #what-is-detailing > div {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 0 1rem;
        text-align: center;
      }
      #what-is-detailing h3 {
        text-align: center;
        margin-bottom: 0.5rem;
      }
      #what-is-detailing p {
        text-align: center;
        margin-bottom: 1.2rem;
      }
      #what-is-detailing .detail-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 2rem auto;
        padding: 0 1rem;
      }
      .detail-icons {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 400px !important;
        margin: 2rem auto !important;
        padding: 0 1rem !important;
      }
      #car-gallery {
        flex-direction: column;
        gap: 1.2rem;
      }
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }
    @media (max-width: 950px) {
  /* Navbar - Earlier collapse for better spacing */
  .navbar-container {
    flex-wrap: nowrap;
    padding: 0.8rem 1rem;
    min-height: 56px;
  }
  .navbar-logo img {
    height: 45px;
  }
  .navbar-links {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #1E1E1E;
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 1.2rem 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    z-index: 1001;
  }
  .navbar-links.active {
    display: flex;
  }
  
  /* Ensure mobile navbar items are properly spaced */
  .navbar-links.active li {
    text-align: center;
    margin: 0.7rem 0;
  }
  
  /* Override any default link styles in mobile */
  .navbar-links.active li a:not(.free-stuff-btn) {
    color: var(--headline);
    background: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
  }
  .navbar-links li a {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  
  /* Mobile Free Stuff Button */
  .navbar-links .free-stuff-btn {
    display: block !important;
    text-align: center !important;
    margin: 1rem auto !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    width: fit-content !important;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5) !important;
    color: white !important;
    font-weight: 600 !important;
  }
  
  .navbar-links .free-stuff-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
  }
  
  .navbar-links .free-stuff-btn::before {
    content: '🎁' !important;
    margin-right: 0.5rem !important;
  }
  
  /* Force mobile free stuff button styling on small screens */
  @media (max-width: 950px) {
    .navbar-links a.free-stuff-btn {
      background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
      color: white !important;
      border-radius: 30px !important;
      padding: 0.8rem 1.5rem !important;
      font-weight: 600 !important;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5) !important;
      margin: 0.5rem auto !important;
      width: auto !important;
      display: inline-block !important;
    }
  }
  .navbar-book-btn {
    display: none;
  }
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  .navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--headline);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
    }
    @media (max-width: 700px) {
  /* Smaller screens - just logo adjustment */
  .navbar-logo img {
    height: 40px !important;
  }

  /* Hero Section */
  .hero {
    min-height: 340px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2rem;
    padding: 0;
  }
  .hero-container {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .hero-side-image {
    display: none !important;
  }
  .hero-content {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }
  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }
  .hero-cta-btn {
    width: 100%;
    min-width: 0;
    font-size: 1.1rem;
    padding: 1.1rem 0;
    border-radius: 12px;
  }

  /* Section Spacing */
  section, header, footer, .trust-section, #what-is-detailing, #gallery, .testimonials, .view-packages-section {
    padding: 1.5rem 0.5rem !important;
    margin: 0.7rem auto 1.5rem auto !important;
    max-width: 98vw !important;
    border-radius: 16px !important;
  }

  /* Still Thinking It Over - Mobile */
  .thinking-section {
    padding: 1.5rem 0.5rem !important;
    margin: 1.5rem auto !important;
    max-width: 98vw !important;
    border-radius: 16px !important;
  }
  .thinking-section .trust-points-mini {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  .thinking-section .faq-section {
    padding: 0 0.5rem;
  }
  .thinking-section .final-cta {
    width: 100% !important;
    max-width: 280px !important;
    font-size: 1.1rem !important;
    padding: 1.1rem 1rem !important;
  }

  /* Trust Section */
  .trust-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .trust-item {
    max-width: 100%;
    width: 100%;
    padding: 1.2rem 0.7rem;
  }

  /* What is Detailing */
  #what-is-detailing .detail-icons {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin: 1.2rem auto;
  }

  /* Gallery */
  #car-gallery {
    flex-direction: column;
    gap: 1.2rem;
    max-width: 100vw;
  }
  #car-gallery > div {
    max-width: 100vw;
    padding: 0;
  }
  #car-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .testimonial-grid blockquote {
    font-size: 1rem;
    padding: 1.2rem 0.7rem 1rem 1.5rem;
    min-height: 80px;
  }

  /* View Packages Section */
  .view-packages-section {
    padding: 1.5rem 0.5rem !important;
    margin: 1.5rem auto !important;
    max-width: 98vw !important;
    border-radius: 16px !important;
  }
  .view-packages-section h2 {
    font-size: 1.2rem;
  }
  .view-packages-section a {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0;
    border-radius: 10px;
  }
}
    @media (max-width: 600px) {
      h1 { font-size: 1.5rem; }
      h2 { font-size: 1.1rem; }
      .hero h1 { font-size: 1.4rem; }
      .hero p { font-size: 1rem; }
      .hero-cta {
        padding: 0 1rem;
        max-width: 100%;
      }
      .hero-cta-btn {
        font-size: 1.15rem;
        padding: 1.2rem 1rem;
        max-width: 100%;
      }
      .btn,
      .btn-book,
      .btn-services,
      .book-btn,
      .scroll-btn {
        font-size: 1.15rem;
        padding: 1.2rem 1rem;
        text-align: center;
      }
      .testimonial-grid blockquote {
        font-size: 0.98rem;
      }
      .package-card h2 {
        font-size: 1.15rem;
      }
      .package-card {
        padding: 1rem 0.5rem;
      }
      #what-is-detailing {
        padding: 2rem 1rem;
      }
      #what-is-detailing > div {
        padding: 0 0.5rem;
      }
      #what-is-detailing .detail-icons {
        max-width: 320px;
        padding: 0 0.5rem;
      }
      .detail-icons {
        max-width: 320px !important;
        padding: 0 0.5rem !important;
      }
    }
    /* Ensure images are responsive */
    img,
    #car-gallery img,
    .testimonial-grid img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    /* Smooth scroll for anchors */
    html {
      scroll-behavior: smooth;
    }
    /* Performance optimization */
    * {
      box-sizing: border-box;
    }
    img {
      height: auto;
      max-width: 100%;
    }