:root {
  --color-primary: #0A1A2F;   /* deep navy */
  --color-accent: #06B6D4;    /* electric blue */
  --color-secondary: #F5F7FA; /* light gray background */
  --color-neutral: #E5E7EB;   /* soft neutral */
  --color-highlight: #0891B2; /* darker blue */
  --color-text-dark: #111827; /* near black */
  --color-text-light: #F9FAFB;/* near white */
}

.contact-wrapper {
  background-color: var(--color-secondary);
}

.contact-list {
  font-size: 1rem;
}

.form-wrapper {
  background-color: white;
  border-radius: 0.375rem;
}

.form-title {
  color: #4682a9;
}

.form-btn {
    --bs-btn-color: white; /* text color */
    --bs-btn-hover-color: white; /* text color on hover */
    --bs-btn-bg: var(--color-accent);
    --bs-btn-hover-bg: #0891B2;
    --bs-btn-border-radius: 1rem;
    width: 150px;
}

.check-wrapper {
    text-align: center;
}