:root {
  --font-heading: 'Gotham', sans-serif;
  --font-subheading: 'Gotham', sans-serif;
  --font-body: 'Bahnschrift', sans-serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.subheading {
  font-family: var(--font-subheading);
  font-weight: 300;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.btn-gradient {
  font-family: var(--font-body);
  background: linear-gradient(90deg, #0063a6 0%, #ef3e56 100%);
  color: #ffffff;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.separator {
  border-top: 0.5px solid #0063a6;
  width: 100%;
  margin: 20px 0;
}

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

@media (max-width: 1440px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
