 /* --- HERO --- */
    .hero {
      position: relative;
      height: 40vh !important;
      overflow: hidden;
    }
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(60%);
    }
    .hero::after {
      content: "Fire Insurance";
      position: absolute;
      bottom: 40%;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 0 4px 8px rgba(0,0,0,0.6);
    }

    /* --- WHY SECTION --- */
    .why {
      text-align: center;
      padding: 4rem 2rem;
      background: #fff;
      color: #333;
    }
    .why h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #1e1b4b;
    }
    .why p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
    }
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.5rem;
    }
    .benefit-item {
      background: #f8f9fb;
      padding: 1.8rem;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .benefit-item:hover {
      transform: translateY(-6px);
      background: #fff5f5;
    }
    .benefit-item h3 {
      color: #1e1b4b;
      margin-bottom: 0.8rem;
    }

    /* --- CTA SECTION --- */
    .cta {
      text-align: center;
      background: #fff;
      padding: 4rem 2rem;
    }
    .cta h2 {
      color: #1e1b4b;
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .cta p {
      max-width: 650px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
    }
    .cta_div{
      display: flex;
      justify-content: center;
      gap: 25px;
    }
    .cta a {
      background: #1e1b4b;
      color: #fff;
      padding: 0.9rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .cta a:hover {
      background: #c1121f;
    }

    /* --- FOOTER --- */
    footer {
      background: #1e293b;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      font-size: 0.9rem;
    }
       @media (max-width: 600px) {
         .cta_div{
        flex-direction: column;
      }
    }