body{
  overflow-x: hidden;
}

.detail-page-header {
      background-color: #002147;
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }
    .detail-page-header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .detail-page-header p {
      font-style: italic;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }
    .card {
      background: white;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.4rem;
      color: #002147;
    }
    .card p {
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    .card button {
      background-color: #002147;
      color: white;
      border: none;
      padding: 0.75rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .card button:hover {
      background-color: #001531;
    }
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1000;
    }
    .modal-content {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
    }
    .modal-content h2 {
      margin-bottom: 1rem;
    }
    .modal-content input,
    .modal-content select {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .modal-content button {
      width: 100%;
      background: #002147;
      color: white;
      padding: 0.75rem;
      border: none;
      border-radius: 6px;
      font-weight: bold;
    }
    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 1.5rem;
      color: white;
      cursor: pointer;
    }
