main.contact-section {
  max-width: 800px;
  margin: 4rem auto;
  background: var(--bg-panel, #fff);
  color: var(--text-color, #000);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
#contactForm label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}
#contactForm button {
  margin-top: 2rem;
  background-color: #82008F;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
#contactForm button:hover {
  background-color: #5e0066;
}
.privacy-policy {
  margin-top: 3rem;
  padding: 1rem;
  background: #f4f4f4;
  border-left: 5px solid #82008F;
  border-radius: 8px;
  color: #333;
}
.privacy-policy h3 {
  margin-top: 0;
}
.contact-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #82008F;
}
.inline-checkbox-label {
  font-weight: normal !important;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.inline-checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5em;
}
.phone-flex {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
#usFlag {
  pointer-events: none;
  font-size: 1.25em;
  margin-right: 0.5em;
  opacity: 1;
}
#phone {
  flex: 1 1 0;
  min-width: 0;
}
.text-warning {
  font-style: italic;
  font-size: 0.98em;
  color: #555;
  margin: 0.4em 0 1em 0;
  display: block;
}
.dark-theme main.contact-section {
  background: #222 !important;
  color: #f0f0f0 !important;
  border-color: #444 !important;
}
.dark-theme main.contact-section input,
.dark-theme main.contact-section select,
.dark-theme main.contact-section textarea {
  background: #181818 !important;
  color: #fafafa !important;
  border-color: #444 !important;
}
.dark-theme .privacy-policy {
  background: #282828 !important;
  color: #e0e0e0 !important;
  border-left-color: #96F447 !important;
}
#privacy-policy {
  scroll-margin-top: 120px;
}
