:root {
    --brand-red: #ba0d0f;
    --brand-dark: #111;
    --ink: #2f3033;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}
*/
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    /*padding: 1rem 1rem 1.5rem;*/
}

header img {
    max-width: 300px;
    height: auto;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

p {
    font-size: 1.2rem;
    max-width: 650px;
    color: #333;
}

a {
    color: #2aa9b3;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

footer {
    background: #eaf2f6;
    font-size: 0.85rem;
    color: #444;
    padding: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

footer em {
    font-style: italic;
    color: #555;
}

footer strong {
    color: #222;
}

.section {
    margin-bottom: 1.2rem;
}

em {
    display: block;
    margin-top: 0.5rem;
    color: #555;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}