*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  margin-top: 0;
}

p,
label,
.form-label,
.form-text,
.nav-link,
.navbar-brand span {
  color: var(--text-main);
}

.text-muted,
.section-subtitle,
footer .text-muted {
  color: var(--text-muted) !important;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.95rem;
}

footer {
  background: transparent;
}

@media (min-width: 1200px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 85%;
  }
}