 body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #fff;
      color: #333;
    }

    h2 {
      text-align: center;
      font-size: 32px;
      margin: 30px 0;
      color: #000;
    }

    /* Hero Section */
    .contact {
      background: linear-gradient(rgba(13,191,102,0.8), rgba(0,0,0,0.5)), 
                  url("https://picsum.photos/1200/400") center/cover no-repeat;
      padding: 40px 20px;
      border-radius: 20px;
      margin: 0 auto 40px;
      max-width: 1100px;
      text-align: center;
    }

    .contact-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .contact-card {
      background: #fff;
      width: 300px;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s;
    }
    .contact-card:hover {
      transform: translateY(-5px);
    }
    .contact-card h3 {
      margin: 10px 0;
      color: #0dbf66;
    }
    .contact-card a {
      color: #0073e6;
      text-decoration: none;
      font-weight: bold;
    }
    .contact-card p {
      font-size: 14px;
      margin-top: 8px;
    }
    .contact-card img {
      width: 40px;
    }

    /* Query Section */
    .queries {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .queries h3 {
      color: #000;
      margin-bottom: 10px;
    }
    .queries p {
      margin-bottom: 20px;
      color: #555;
    }
    .queries .query-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .queries .q-card {
      background: #fff;
      border: 1px solid #eee;
      padding: 15px;
      border-radius: 8px;
    }
    .queries .q-card a {
      color: #0073e6;
      font-weight: bold;
      text-decoration: none;
    }
    .queries .q-card p {
      font-size: 14px;
      margin-top: 8px;
    }

    /* Escalation Table */
    .escalation {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .escalation h3 {
      margin-bottom: 15px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }
    table, th, td {
      border: 1px solid #ccc;
    }
    th, td {
      padding: 12px;
      text-align: left;
      font-size: 14px;
    }
    th {
      background: #0dbf66;
      color: #fff;
    }

    /* Map */
    .map {
      margin: 40px auto;
      max-width: 1000px;
      border-radius: 12px;
      overflow: hidden;
    }
    iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    @media(max-width:768px) {
      .hero-cards {
        flex-direction: column;
        align-items: center;
      }
      .escalation table {
        display: block;
        width: 100%;
        overflow-x: auto;
      }
    }