/* =====================================================
   Assurance & Taxes — Professional UI
   Mobile / Tablet / iOS Safe
===================================================== */

#assuranceTaxesApp {
  max-width: 720px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #111;
}

/* Titles */
#assuranceTaxesApp h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* Labels */
#assuranceTaxesApp label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Select & Inputs */
#assuranceTaxesApp select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #fff;
  appearance: none;
}

/* Services checkboxes */
#assuranceTaxesApp input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 8px;
}

#assuranceTaxesApp label input {
  display: inline-block;
}

/* Buttons */
#assuranceTaxesApp button {
  background: #0b5fff;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

#assuranceTaxesApp button:hover {
  background: #0847c9;
  transform: translateY(-1px);
}

/* WhatsApp button */
#assuranceTaxesApp a#wa {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Recap box */
#assuranceTaxesApp #recap {
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e6e6e6;
}

#assuranceTaxesApp #details {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Horizontal rule */
#assuranceTaxesApp hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 18px 0;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablets */
@media (max-width: 768px) {
  #assuranceTaxesApp {
    padding: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  #assuranceTaxesApp {
    margin: 10px;
    padding: 14px;
  }

  #assuranceTaxesApp button,
  #assuranceTaxesApp a#wa {
    width: 100%;
    text-align: center;
  }

  #assuranceTaxesApp select {
    font-size: 0.95rem;
  }
}

/* iOS fixes */
#assuranceTaxesApp * {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Print */
@media print {
  #assuranceTaxesApp button,
  #assuranceTaxesApp a#wa {
    display: none;
  }
}
