
    /* Reset & base */
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: #f9fafb;
      color: #333;
    }
    a {
      color: #ed4c3c;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    h1, h2, h3, h4 {
      margin-top: 0;
      color: #222;
    }
    p {
      margin-bottom: 1em;
    }
    button {
      cursor: pointer;
      border: none;
      background-color: #ed4c3c;
      color: white;
      padding: 0.6em 1.2em;
      font-size: 1rem;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }
    button:hover,
    button:focus {
      background-color: #005fa3;
      outline: none;
    }
    input, select, textarea {
      font-family: inherit;
      font-size: 1rem;
      padding: 0.5em;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      margin-top: 0.25em;
      margin-bottom: 1em;
      transition: border-color 0.3s ease;
    }
    input:focus, select:focus, textarea:focus {
      border-color: #ed4c3c;
      outline: none;
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1em;
    }
    /* Header */
    header {
      background-color: #b2210d;
      color: white;
      padding: 1em 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    header nav a {
      margin-left: 1.5em;
      font-weight: 600;
      color: white;
    }
    header nav a:hover {
      color: #fdc4bc;
    }
    header .logo {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
    }
    /* Hero Section */
    #hero {
      background: linear-gradient(135deg, #ed4c3c 0%, #b2210d 100%);
      color: white;
      padding: 4em 1em 6em;
      text-align: center;
    }
    #hero h1 {
      font-size: 2.8rem;
      margin-bottom: 0.5em;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.1;
      color: #fff;
    }
    #hero p {
      font-size: 1.25rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1.5em;
    }
    #hero button {
      font-size: 1.1rem;
      padding: 0.75em 2em;
      border-radius: 30px;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    /* Sections */
    section {
      padding: 3em 0;
      background: white;
      border-bottom: 1px solid #eee;
    }
    section:nth-of-type(even) {
      background: #f4f7fa;
    }
    section h2 {
      text-align: center;
      margin-bottom: 1em;
      font-size: 2rem;
      color: #b2210d;
    }
    /* About Preview */
    #about .content {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #444;
      line-height: 1.7;
      text-align: center;
    }
    /* Why Choose Us */
    #why-choose-us .grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 1.5em;
    }
    #why-choose-us .card {
      background: white;
      border-radius: 8px;
      padding: 1.5em;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      color: #b2210d;
    }
    #why-choose-us .card h3 {
      margin-bottom: 0.5em;
    }
    /* Services */
    #services .service-category {
      max-width: 900px;
      margin: 0 auto 3em;
    }
    #services .service-category h3 {
      color: #ed4c3c;
      margin-bottom: 0.75em;
      border-bottom: 2px solid #ed4c3c;
      display: inline-block;
      padding-bottom: 0.25em;
    }
    #services ul {
      list-style: disc inside;
      color: #333;
      font-size: 1.05rem;
      margin-bottom: 0;
    }
    /* Testimonials */
    #testimonials .container {
      max-width: 900px;
      margin: 0 auto;
    }
    #testimonials .testimonial-list {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
      gap: 1.5em;
    }
    #testimonials .testimonial {
      background: white;
      border-radius: 8px;
      padding: 1.5em;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-style: italic;
      color: #555;
      position: relative;
    }
    #testimonials .testimonial::before {
      content: "“";
      font-size: 3rem;
      color: #ed4c3c;
      position: absolute;
      top: 0.2em;
      left: 0.5em;
      font-weight: bold;
    }
    #testimonials .testimonial-footer {
      margin-top: 1em;
      font-weight: 700;
      color: #b2210d;
      font-style: normal;
      text-align: right;
    }
    /* FAQ */
    #faq .container {
      max-width: 900px;
      margin: 0 auto;
    }
    #faq details {
      background: white;
      border-radius: 6px;
      margin-bottom: 1em;
      padding: 1em 1.25em;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      cursor: pointer;
    }
    #faq summary {
      font-weight: 600;
      font-size: 1.1rem;
      outline: none;
      user-select: none;
    }
    #faq details[open] summary::after {
      content: "▲";
      float: right;
      font-size: 0.9rem;
      color: #ed4c3c;
    }
    #faq summary::after {
      content: "▼";
      float: right;
      font-size: 0.9rem;
      color: #ed4c3c;
    }
    /* Get In Touch Form */
    #contact .container {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      padding: 2em;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    #contact label {
      font-weight: 600;
      display: block;
    }
    #contact button {
      width: 100%;
      font-size: 1.1rem;
      margin-top: 0.5em;
    }
    /* Newsletter form */
    #newsletter .container {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      padding: 2em;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    #newsletter label {
      font-weight: 600;
      display: block;
    }
    #newsletter button {
      width: 100%;
      font-size: 1.1rem;
      margin-top: 0.5em;
    }
    /* Footer */
    footer {
      background-color: #b2210d;
      color: white;
      padding: 2em 1em;
      text-align: center;
      font-size: 0.9rem;
    }
    footer a {
      color: #fdc4bc;
      margin: 0 0.5em;
      font-weight: 600;
    }
    footer a:hover {
      color: white;
    }
    /* Modal styles for Privacy Policy, Terms & Newsletter */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      padding: 1em;
    }
    .modal-overlay.active {
      display: flex;
    }
    .modal {
      background: white;
      max-width: 700px;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 8px;
      padding: 2em;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .modal h2 {
      margin-top: 0;
      color: #b2210d;
    }
    .modal .close-btn {
      position: absolute;
      top: 1em;
      right: 1em;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      font-weight: 700;
      color: #ed4c3c;
      cursor: pointer;
    }
    .modal .close-btn:hover {
      color: #b2210d;
    }
    /* Confirmation message styles */
    .confirmation-message {
      background: #e7f4e4;
      border: 1px solid #5cb85c;
      border-radius: 6px;
      padding: 1em 1.5em;
      margin-bottom: 1em;
      color: #3c763d;
      text-align: center;
      display: none;
    }
    /* Responsive */
    @media (max-width: 600px) {
      #hero h1 {
        font-size: 2rem;
      }
      header .container {
        flex-direction: column;
        align-items: flex-start;
      }
      header nav {
        margin-top: 0.5em;
      }
      header nav a {
        margin-left: 0;
        margin-right: 1em;
      }
    }

    /* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-category {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.service-category:hover,
.service-category:focus-within {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-category h3 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-category ul {
  list-style: disc inside;
  padding-left: 0;
}

.service-category li {
  margin-bottom: 0.5rem;
}

  