.container.emergency-page {
      max-width: 1200px;
      margin: auto;
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    /* Emergency Intro Section */
    .emergency-intro {
      text-align: center;
    }

    .emergency-intro h1 {
      color: #b71c1c;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .emergency-intro p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .emergency-intro img {
      width: 100%;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* Emergency Services Section */
    .emergency-services h2 {
      color: #d32f2f;
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .emergency-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .emergency-card {
      flex: 1 1 250px;
      background: #fff;
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .emergency-card:hover {
      transform: translateY(-5px);
    }

    .emergency-card h3 {
      margin: 1rem 0 0.8rem;
      color: #b71c1c;
    }

    .emergency-card p {
      font-size: 1rem;
      line-height: 1.5;
    }

    /* Emergency Specialists Section */
    .emergency-specialists h2 {
      color: #d32f2f;
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .specialists-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .specialist {
      flex: 1 1 250px;
      text-align: center;
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .specialist img {
      width: 100%;
      max-width: 200px;
      border-radius: 50%;
      margin-bottom: 1rem;
    }

    .specialist h3 {
      color: #b71c1c;
      margin-bottom: 0.5rem;
    }

    .specialist p {
      font-size: 0.95rem;
      line-height: 1.4;
    }

    /* Emergency Care Section */
    .emergency-care h2 {
      color: #d32f2f;
      text-align: center;
      margin-bottom: 1rem;
    }

    .emergency-care ul {
      list-style: none;
      max-width: 700px;
      margin: auto;
      padding-left: 0;
    }

    .emergency-care ul li {
      font-size: 1.05rem;
      margin-bottom: 0.8rem;
    }

    .emergency-care ul li::before {
      content: "⚠️ ";
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .emergency-cards, .specialists-grid {
        flex-direction: column;
        align-items: center;
      }
    }
