  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Arial', sans-serif;
      background:  #1C1D1F;
      /* linear-gradient(135deg, #f5f7fa 0%, #1C1D1F 100%); */
      min-height: 100vh;
  }

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

  .highlight {
  font-weight: 900;
  position: relative;
}


.highlight::after {
  content: attr(title);
  position: absolute;
  top: 100%;            /* place it just below the span */
  left: 50%;            /* center horizontally relative to span */
  transform: translateX(-50%) translateY(4px); /* optional small gap */
  background: #fdfdfd;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 15px;
  color: rgb(31, 79, 107);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 1;
  pointer-events: none;
}


  /* Hero Section */
  .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 0;
      position: relative;
  }

  .hero-content {
      flex: 1;
      max-width: 500px;
  }

  .hero h1 {
      font-size: 48px;
      font-weight: bold;
      color: #2BE6F9;
      line-height: 1.2;
      margin-bottom: 30px;
  }

  .reserve-btn {
      background: #2d2d2d;
      color: #2BE6F9;
      border: solid 1px #2BE6F9;
      padding: 15px 30px;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .reserve-btn:hover {
      background: #555;
      transform: translateY(-2px);
  }

  

  .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }

  .hero-content {
      width: 300px;
      height: 300px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
  }

  .hero-content img {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      object-fit: cover;
  }



  /* Background Pattern */
  /* .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 10%;
            width: 300px;
            height: 300px;
            background-image: radial-gradient(circle, #ddd 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 0;
        } */


  /* Content Grid */
  /* .section-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 40px 0;
  }

  .section-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
  } */

  .section-grid {
        display: grid;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 0;
  }

  /* .section-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
      height: 100%;
  } */

  .section-card {
    /* flex: 1 1 250px;
    min-width: 250px; */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}


  /* .section-card:hover {
      transform: translateY(-10px);
  } */

  .section-card-content {
      padding: 20px;
  }

  .section-card h3 {
      color: #2c3e50;
      margin-bottom: 10px;
  }

  .section-card p {
      color: #666;
      font-size: 14px;
  }

  /* Footer */
  .footer {
      background: #333;
      color: white;
      padding: 50px 0 20px 0;
      margin-top: 30px;
  }

  .footer a{
    color: white;
    text-decoration: none;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 30px;
  }

  .footer-section h3 {
      margin-bottom: 20px;
      color: #2BE6F9;
  }

  .footer-section ul {
      list-style: none;
  }

  .footer-section ul li {
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
  }

  .footer-section ul li:hover {
      color: #2BE6F9;
  }

  .footer-bottom {
      border-top: 1px solid #ffffff;
      padding-top: 20px;
      text-align: center;
      color: #bdc3c7;
  }

  .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
  }

  .social-link {
      width: 40px;
      height: 40px;
      background: #ff6b6b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: transform 0.3s ease;
  }

  .social-link:hover {
      transform: scale(1.1);
  }

  #recordingsList li {
      text-align: center;
      margin-bottom: 10px;
  }

  #recordingsList li audio {
      width: 100%;
      max-width: 250px;
      margin: 0 auto;
      display: block;
  }

  /* Responsive */
  @media (max-width: 768px) {
      div[style*="display: flex"] {
          flex-direction: column !important;
      }
  }


  /* Responsive */
  @media (max-width: 768px) {
      .hero {
          flex-direction: column;
          text-align: center;
          gap: 40px;
      }

      .hero h1 {
          font-size: 36px;
      }

      .search-nav {
          flex-direction: column;
          gap: 20px;
      }

      .nav-items {
          gap: 20px;
      }

      .hero-content {
          width: 280px;
          height: 280px;
      }
  }