body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f4f4f4;
    }

    .hero {
      background: url('safedrivessd-bg.jpg') center/cover no-repeat;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    @keyframes slideInLeft {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .hero-content h1 {
      font-size: 3em;
      margin-bottom: 10px;
      animation: slideInLeft 3s ease-out forwards;
    }

    .tagline {
      font-size: 1.5em;
      margin-bottom: 20px;
    }

    .cta-button {
      background: #0077cc;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 5px;
      display: inline-block;
      margin-top: 10px;
    }

    .features {
      background: white;
      padding: 60px 20px;
      text-align: center;
    }

    .feature-grid {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }

    .feature {
      width: 30%;
      min-width: 250px;
      margin: 20px 0;
    }

    .how-it-works,
    .video-demo,
    .install-demo,
    .buy-now {
      padding: 60px 20px;
      text-align: center;
    }

    .video-demo,
    .install-demo {
      background: #e8f0ff;
    }

    iframe {
      max-width: 90%;
      height: auto;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    footer {
      background: #222;
      color: #ccc;
      text-align: center;
      padding: 20px;
      font-size: 0.9em;
    }

    footer p {
      margin: 5px 0;
      line-height: 1.4;
    }

    footer a {
      color: #ccc;
      text-decoration: underline;
    }
  