@font-face {
  font-family: Museo;
  src: url("../fonts/Museo-300.woff2") format("woff2"),
       url("../fonts/Museo-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Museo;
  src: url("../fonts/Museo-500.woff2") format("woff2"),
       url("../fonts/Museo-500.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Museo;
  src: url("../fonts/Museo-500.woff2") format("woff2"),
       url("../fonts/Museo-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Museo;
  src: url("../fonts/Museo-700.woff2") format("woff2"),
       url("../fonts/Museo-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Museo, Arial, Helvetica, sans-serif;
  background: #fff;
  color: #707f8f;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

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

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 20px 0 16px;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo img {
  width: 200px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-nav .monetize {
  color: #f8a802;
  font-size: 17px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 42px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 36px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-outline {
  color: #f8a802;
  border-color: #f8a802;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(243, 167, 51, 0.21);
  color: #f8a802;
  opacity: 1;
}

.btn-fill {
  color: #fff;
  background-color: #f8a802;
  border-color: transparent;
}

.btn-fill:hover {
  background-color: rgba(243, 167, 51, 0.21);
  color: #f8a802;
  opacity: 1;
}

/* Page title */
.page-title {
  margin: 40px 0 24px;
  color: #f8a802;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

/* Layout: sidebar + content */
.layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.side-nav {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.side-nav a {
  color: #707f8f;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.side-nav a.is-active {
  color: #2a354d;
  font-weight: 700;
}

.content {
  flex: 1 1 auto;
  max-width: 660px;
  color: #707f8f;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.content h2 {
  margin: 1.4em 0 0.6em;
  color: #2a354d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  margin: 0 0 1em;
}

.content ol,
.content ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.content li {
  margin: 0 0 0.35em;
}

.content ol ol,
.content ul ul {
  margin: 0.35em 0 0.5em;
}

.content a {
  color: #029aff;
  text-decoration: underline;
}

.content strong {
  font-weight: 700;
}

/* CTA */
.cta {
  padding: 24px 0 40px;
  text-align: center;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 55px;
  padding: 0 32px;
  border-radius: 27.5px;
  background: linear-gradient(90deg, #ffc200 0%, #f75d08 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}

.cta-link:hover {
  opacity: 0.9;
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 0 45px;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-powered {
  flex: 1;
  color: #414859;
  font-size: 13px;
}

.footer-top {
  color: #414859;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.footer-top svg {
  display: block;
}

@media screen and (max-width: 959px) {
  .layout {
    flex-direction: column;
    gap: 24px;
  }

  .side-nav {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 28px;
  }

  .content {
    max-width: none;
  }

  .page-title {
    font-size: 36px;
    margin-top: 24px;
  }
}

@media screen and (max-width: 639px) {
  .logo img {
    width: 160px;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav .monetize {
    font-size: 15px;
  }

  .btn {
    min-width: 80px;
    height: 34px;
    font-size: 13px;
    padding: 0 10px;
  }

  .page-title {
    font-size: 28px;
  }

  .site-footer .wrap {
    flex-direction: column;
  }
}
