/* Base Values */ 

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

p, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
ul:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h4,
h5,
h6 {
  line-height: 1.4;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  list-style: none;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* My Values */

.header {
  background-color: #E6E6E6;
  padding: 0.8rem 0;
}

.header__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
}

.header__spacer {
  width: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__link {
  color: #001F3D;
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav__link--active {
  color: #005bb5;
  border-bottom: 3px solid #005bb5;
}

.nav__link:hover {
  color: #005bb5;
  text-decoration: none;
}

.nav__link:hover:not(.nav__link--active) {
  color: #005bb5;
  text-decoration: none;
}

/* Hero Section Values */

.hero {
  flex: 1 0 auto;
  padding: 4rem 1rem;
  background: radial-gradient(circle at top right, #002d5a, #001F3D);
}

.hero__container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  min-width: 0;
}

.hero__title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__description {
  font-size: 1.2rem;
  color: #B0C4DE;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__btn {
  width: max-content;
  font-size: 1.2rem;
  display: inline-block;
  color: #001F3D;
  background-color: #E6E6E6;
  text-decoration: none;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 10px;
  transition: background 0.3s ease;
  padding: 8px 16px;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.hero__btn:hover {
  background-color: #38bdf8;
  color: #001F3D;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

.hero__image {
  border-radius: 10px;
  flex: 1 1 50%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
  transition: transform 0.5s ease;
}

.hero__image:hover {
  transform: scale(1.02);
}

/* Error Page Values */

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: #001F3D;
}

.error-page__container  {
  text-align: center;
}

.error-page__heading {
  font-size: 2.5rem;
  color: #fff;
}

.error-page__heading--highlight {
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.error-page__description {
  font-size: 1.5rem;
  color: #E6E6E6;
  margin-bottom: 1rem;
}

.error-page__link {
  font-size: 1.7rem;
  display: inline-block;
  color: #001F3D;
  background-color: #E6E6E6;
  text-decoration: none;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 10px;
  transition: background 0.3s ease;
  padding: 8px 16px;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.error-page__link:hover {
  background-color: #38bdf8;
  color: #001F3D;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

/* Footer Values */

.footer {
  background-color: #001F3D;
  flex-shrink: 0;
  padding: 1rem;
}

.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer__brand {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer__legal {
  flex: 1;
  min-width: 0;
  max-width: 500px;
  text-align: center;
  margin-left: auto;
}

.footer__disclaimer {
  line-height: 1.4;
  word-wrap: break-word;
}