* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #04121f, #063b63, #0b84e5);
  color: #1f2933;
}

.portal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 15px;
}

.card {
  width: 100%;
  max-width: 780px;
  background: #ffffff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 6px solid #0b84e5;
  padding-left: 18px;
  margin-bottom: 28px;
}

.logo {
  width: 95px;
  height: auto;
}

.header h1 {
  margin: 0;
  color: #061826;
  font-size: 30px;
}

.header p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 15px;
}

.hero {
  background: #f1f7fc;
  border: 1px solid #d8eaf7;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 22px;
}

.hero h2 {
  margin: 0 0 10px;
  color: #063b63;
}

.hero p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}

.service-grid div {
  background: #063b63;
  color: #ffffff;
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
}

label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #061826;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0b84e5;
  box-shadow: 0 0 0 3px rgba(11, 132, 229, 0.15);
}

button {
  width: 100%;
  margin-top: 25px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #0b84e5;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #086bb8;
}

.contact-box {
  margin-top: 28px;
  padding: 20px;
  background: #f8fafc;
  border-left: 5px solid #0b84e5;
  border-radius: 14px;
}

.contact-box p {
  margin: 8px 0;
  color: #374151;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

footer {
  margin-top: 25px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

@media (max-width: 700px) {
  .card {
    padding: 24px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 85px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header h1 {
    font-size: 24px;
  }
}