 body {
      font-family: 'AdorshoLipi', 'Segoe UI', sans-serif;
      background: #f5f7fa;
      color: #333;
    }

    .topbar {
      background: #0d6efd;
      color: #fff;
      padding: 8px 0;
      font-size: 15px;
    }

    .topbar a {
      color: #fff;
      text-decoration: none;
    }

    header {
      background: #fff;
      padding: 1rem 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    header img {
      height: 70px;
    }

    .section-title {
      background: linear-gradient(90deg, #0d6efd, #0039a6);
      color: #fff;
      padding: 1rem;
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

    .registration-form {
      background: #fff;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .registration-form h5 {
      color: #0d6efd;
      margin-bottom: 1rem;
      border-bottom: 2px solid #0d6efd;
      display: inline-block;
      padding-bottom: 3px;
    }

    label {
      font-weight: 600;
      margin-top: 10px;
    }

    input,
    select,
    textarea {
      border: 1.6px solid #ccc;
      border-radius: 6px;
      padding: 10px;
      width: 100%;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #0d6efd;
      outline: none;
    }

    button {
      background: #0d6efd;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 5px;
      font-size: 1.1rem;
      margin-top: 1rem;
      transition: all 0.3s ease;
    }

    button:hover {
      background: #0039a6;
    }

    .info-box {
      background: #e9f4ff;
      border-left: 5px solid #0d6efd;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .info-box h4 {
      color: #0d6efd;
      margin-bottom: 0.8rem;
    }

    .mapouter iframe {
      width: 100%;
      height: 300px;
      border-radius: 8px;
    }

    footer {
      background: #0d6efd;
      color: #fff;
      text-align: center;
      padding: 0.8rem 0;
      margin-top: 3rem;
      font-size: 15px;
    }