    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 30px;
      border-radius: 10px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/sadvichar-hospital-rajula-rajula-hospitals-cmaex45msz.jpg') no-repeat center center / cover;
      transition: transform 0.8s ease;
      z-index: 0;
    }

    .hero:hover::before {
      transform: scale(1.05);
      /* Zoom in slightly on hover */
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
      /* Dark overlay */
      z-index: 1;
    }

    .hero h2 {
      position: relative;
      color: white;
      font-size: 3rem;
      text-shadow: 2px 2px 4px #000;
      z-index: 2;
    }

    /* About Content */
    .about-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .about-block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 60px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-block img {
      flex: 1 1 400px;
      max-width: 350px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .about-text {
      flex: 1 1;
    }

    .about-text h3 {
      color: #d80032;
      margin-bottom: 16px;
      font-size: 2rem;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: justify;
    }

    /* Alternate layout */
    .about-block:nth-child(even) {
      flex-direction: row-reverse;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h2 {
        font-size: 2rem;
        text-align: center;
      }

      .about-block {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
      }

      .about-text h3 {
        margin-top: 20px;
      }

      .about-block img {
        max-width: 275px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }

      .about-section {
        padding: 0 0px;
      }
    }