body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f4f7fb;
  color: #1e1e2f;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box; }

main {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  padding: 1.5rem 0 3rem;
  box-sizing: border-box; }

/* Base styles for content-section */
.content-section {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0px auto;
  max-width: 1200px;
  /* Constrain width for non-wide pages */
  width: 100%;
  box-sizing: border-box; }

/* Wide layout for homepage */
.content-section--wide {
  max-width: 100%;
  /* Full-width for homepage */
  margin: 1rem 0; }

/* Heading styles */
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e1e2f; }

/* Paragraph styles for text-heavy pages */
.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem; }

/* Form styles for form-heavy pages */
.content-section .js-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem; }

/* Ensure table fits within content-section */
.content-section .custom-table {
  width: 100%;
  max-width: 100%; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 1rem 1.5rem;
    margin: 0.5rem; }

  .content-section--wide {
    margin: 0.5rem; }

  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem; }

  .content-section p {
    font-size: 0.9375rem; } }
@media (max-width: 480px) {
  .content-section {
    padding: 0.75rem 1rem; }

  .content-section h2 {
    font-size: 1.25rem; }

  .content-section p {
    font-size: 0.875rem; } }
.flash-message-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  position: absolute; }

.flash-message-row > div {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  /* Limits the width for better readability */ }

.flash-message {
  background-color: #e6f4ea;
  /* Light green background for success */
  color: #2e7d32;
  /* Dark green text for contrast */
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #a5d6a7;
  /* Subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  /* Smooth fade-in animation */ }

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .flash-message {
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 10px; } }
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3.5rem 1.5rem 0;
  margin-top: auto; }

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b; }

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f8fafc;
  margin-bottom: 0.75rem; }
  .site-footer__logo img {
    height: 28px; }
  .site-footer__logo strong {
    font-size: 1rem;
    font-weight: 700; }

.site-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
  max-width: 280px; }

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; }

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; }
  .site-footer__col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 0.25rem; }
  .site-footer__col a {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease; }
    .site-footer__col a:hover {
      color: #f8fafc; }

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0; }
  .site-footer__bottom p {
    font-size: 0.8125rem;
    color: #475569;
    margin: 0; }

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; } }
ooter:not(.site-footer) {
  padding-block: 2rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  background: #0f172a;
  color: #cbd5e1;
  text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem; }

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1f2a44;
  flex-shrink: 0; }
  .site-header__logo img {
    height: 36px; }
  .site-header__logo strong {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem; }

.site-header__link {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap; }
  .site-header__link:hover {
    color: #1e293b;
    background: #f1f5f9; }
  .site-header__link--active {
    color: #2563eb;
    background: #eff6ff;
    font-weight: 600; }
    .site-header__link--active:hover {
      color: #1d4ed8;
      background: #dbeafe; }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap; }
  .site-header__cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.15s ease; }
  .site-header__burger:hover {
    background: #f1f5f9; }
  .site-header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #475569;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease; }
  .site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }
  .site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0; }
  .site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }

.header-badge {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.05rem 0.4rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5;
  background: #f1f5f9;
  color: #64748b; }
  .header-badge--pro {
    background: #dcfce7;
    color: #15803d; }

@media (max-width: 768px) {
  .site-header__burger {
    display: flex; }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    display: none; }
    .site-header__nav--open {
      display: flex; }

  .site-header__link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    border-radius: 0; }

  .site-header__cta {
    margin: 0.5rem 0 0;
    justify-content: center;
    padding: 0.75rem 1rem; } }
header:not(.site-header) {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  padding-block: 1rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem)); }
  header:not(.site-header) a {
    text-decoration: none;
    color: #1f2a44;
    transition: color 0.2s ease; }
    header:not(.site-header) a:hover {
      color: #2563eb; }
  header:not(.site-header) nav {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    header:not(.site-header) nav a {
      margin: 0 1rem;
      font-weight: 500;
      font-size: 0.9375rem; }
      header:not(.site-header) nav a:hover {
        text-decoration: underline; }

/*# sourceMappingURL=terms.css.map */
