 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 0;
}

/* Header */
.main-header .logo img {
    padding: 15px 40px;
  height: 50px;
  transform: scale(1.6);
  transform-origin: left center;
  
 
}

.main-header .logo img {
  height: 90px;
}

/* Main Layout */
.main-container {
  display: flex;
  flex-direction: row-reverse; 
  justify-content: space-between;
  max-width: 1100px;
  background: #fff;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Left - Form */
.form-container {
  flex: 1.2;
  padding: 40px;
}

.form-container h2 {
  margin-bottom: 25px;
  color: #0f2b3d;
}

form .input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  
}

form input, form select {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkbox-row {
  margin: 20px 0;
 
}

.checkbox-row input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-row label {
  display: block;
  color: #333;
}

.checkbox-row label a {
  color: #387398;
  text-decoration: none;
}

.checkbox-row label a:hover {
  text-decoration: underline;
}

button {
  padding: 12px 25px;
  background-color: #0f2b3d;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #387398;
}

/* Right - Circle Image  */
.image-container {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9f0f5;
}

.circle-frame {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #0f2b3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Footer */
.main-footer {
  background-color: #0f2b3d;
  padding: 20px;
  text-align: center;
}

.main-footer p {
  color: #fff;
  font-size: 14px;
}

.main-footer a {
  color: #fff;
  text-decoration: underline;
  margin: 0 10px;
}
/* === Responsive Design === */

@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    margin: 20px;
  }

  .form-container, .image-container {
    flex: 1;
    width: 100%;
    padding: 30px;
  }

  .circle-frame {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  form .input-row {
    flex-direction: column;
  }

  form input, form select {
    width: 100%;
  }

  .form-container {
    padding: 20px;
  }

  .circle-frame {
    width: 250px;
    height: 250px;
    border-width: 8px;
  }

  .main-header .logo img {
    height: 70px;
    transform: scale(1.3);
  }
}

@media (max-width: 480px) {
  .main-container {
    margin: 10px;
  }

  .form-container h2 {
    font-size: 20px;
  }

  button {
    width: 100%;
    padding: 12px;
  }

  .circle-frame {
    width: 200px;
    height: 200px;
    border-width: 6px;
  }

  .main-header .logo img {
    height: 60px;
    padding: 10px 20px;
    transform: scale(1.2);
  }

  .main-footer p {
    font-size: 12px;
  }
}




/*terms*/
   .termcontainer {
      background-color: white;
      max-width: 900px;
      margin: 40px auto;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .termcontainer h1 {
      text-align: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 40px;
    }
    .termcontainer h2 {
      color: #0f2b3d;
      font-size: 22px;
      margin-top: 30px;
      margin-bottom: 10px;
    }
    hr.termsection-divider {
      border: none;
      height: 2px;
      background-color: #0f2b3d;
      margin-top: -10px;
      margin-bottom: 20px;
    }
    p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    strong {
      font-weight: bold;
    }


    /*  Responsive Design */

@media (max-width: 768px) {
  .termcontainer {
    padding: 25px;
    margin: 20px;
  }

  .termcontainer h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .termcontainer h2 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 8px;
  }

  p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .termcontainer {
    padding: 20px;
    margin: 10px;
  }

  .termcontainer h1 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .termcontainer h2 {
    font-size: 18px;
  }

  hr.termsection-divider {
    height: 1.5px;
    margin-top: -8px;
    margin-bottom: 15px;
  }

  p {
    font-size: 14px;
    line-height: 1.4;
  }
}
