    .container1 {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    /* ---------------- HERO SECTION ---------------- */
    .hero {
      background: linear-gradient(120deg, #f57c00, #ffb74d);
      color: white;
      padding: 80px 20px;
      text-align: center;
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 0;
    }

    /* ---------------- ABOUT SECTION ---------------- */
    .about {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      align-items: center;
      padding: 60px 20px;
    }

    .about img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    }

    .about-content h2 {
      color: #e65100;
      margin-bottom: 15px;
    }

    /* ---------------- FACILITIES SECTION ---------------- */
    .facilities {
      background-color: #fff3e0;
      padding: 60px 20px;
    }

    .facility-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .facility-card {
      background: white;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .facility-card:hover {
      transform: translateY(-5px);
      background: #ffe0b2;
    }

    .facility-card i {
      font-size: 36px;
      color: #f57c00;
      margin-bottom: 15px;
    }

    /* ---------------- LOCATION SECTION ---------------- */
    .location {
      padding: 60px 20px;
      background-color: #fff8e1;
      text-align: center;
    }

    .map {
      margin-top: 30px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    /* ---------------- CONTACT SECTION ---------------- */
    .contact {
      background: linear-gradient(90deg, #f57c00, #ffb74d);
      color: white;
      text-align: center;
      padding: 50px 20px;
    }

    .contact h2 {
      margin-bottom: 10px;
    }

    .contact a {
      color: white;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
      background: #e65100;
      padding: 12px 25px;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .contact a:hover {
      background: #bf360c;
    }

    footer {
      text-align: center;
      padding: 15px;
      background: #222;
      color: #fff;
      font-size: 0.9rem;
    }