.section {
  padding: 120px 20px;
  background: #e1f1fa;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section .card {
  background: #f5f7f9;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section .card .title {
  color: #334155;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.section .card p span {
  color: #0e8fb0;
  font-weight: 600;
}

.section .desc {
  font-size: 20px;
  color: #334155;
  margin-top: 28px;
  font-weight: 400;
}

.section .features {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin: 60px;
}

.section .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section .item p {
  font-size: 16px;
  color: #334155;
  font-weight: 400;
  margin: 0;
}

/* BUTTON (scope it too!) */
.section button {
  background: #0e8fb0;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

.section button:hover {
  background: #0c7a96;
}

/* MODAL */
.section .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.section .modal {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 320px;
  text-align: center;
}

.section .modal input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.section .actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.section .submit {
  background: #0e8fb0;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .section {
    padding: 80px 20px;
    background: #e1f1fa;
  }

  .section .features {
    flex-direction: column;
    gap: 15px;
  }

  .section .item {
    flex-direction: column;
  }
}
