:root {
  --bg-base: #050505;
  --bg-surface: #121212;
  --bg-elevated: #1a1a1a;
  --accent: #00a8ff;
  --accent-glow: #00a8ff88;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --font-heading: 'Oswald', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-base);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-base);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

::selection {
  background: var(--accent);
  color: #fff;
}

a:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
}

.glow {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  margin-right: 20px;
  margin-left: 20px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition);
}

.header-phone i {
  color: var(--accent);
  font-size: 15px;
}

.header-phone:hover {
  color: var(--accent);
}

#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 100%), url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 50px;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--accent);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(50px, 8vw, 90px);
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-desc {
  max-width: 650px;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--text-main);
  color: var(--bg-base);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 2px;
  border: 2px solid transparent;
  line-height: 1.2;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: 2px solid var(--accent);
  border-radius: 2px;
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: var(--transition);
}

.hero-phone i {
  color: var(--accent);
  font-size: 16px;
  transition: var(--transition);
}

.hero-phone:hover {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.hero-phone:hover i {
  color: #fff;
}

#o-mnie {
  padding: 120px 5vw;
  background: var(--bg-surface);
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.glow-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.glow-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, var(--accent));
  animation: spin 4s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.glow-card-inner {
  background: var(--bg-elevated);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  padding: 50px;
  height: 100%;
}

.about-photo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: var(--transition);
}

.about-photo-img:hover {
  transform: scale(1.03);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-text h2 span {
  color: var(--accent);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-text ul {
  color: var(--text-main);
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.about-text li {
  margin-bottom: 12px;
}

.about-text li strong {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
}

#opinie {
  padding: 120px 0;
  background: var(--bg-base);
  overflow: hidden;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 5vw;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  text-transform: uppercase;
}

.section-head p {
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.marquee {
  display: flex;
  gap: 20px;
  user-select: none;
  padding: 20px 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  min-width: 100%;
  animation: scroll-left 30s linear infinite;
}

#testimonials-marquee .marquee-content {
  animation-duration: 120s;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 20px));
  }
}

.testimonial-card {
  width: 340px;
  min-height: 230px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-source {
  color: var(--text-muted);
  font-size: 12px;
}

#jak-to-dziala {
  padding: 120px 5vw 80px;
  background: var(--bg-surface);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.timeline-icon::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(0, 168, 255, 0.3);
  transform: translateY(-50%);
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -37px;
  top: 56px;
  width: 0;
  height: calc(100% - 16px);
  border-left: 2px dashed rgba(0, 168, 255, 0.4);
}

.timeline-step:hover .timeline-icon {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-icon i {
  font-size: 18px;
  color: var(--accent);
  transition: var(--transition);
}

.timeline-step:hover .timeline-icon i {
  color: #fff;
}

.timeline-body {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 28px 30px;
  flex: 1;
  transition: border-color 0.3s, transform 0.3s;
}

.timeline-step:hover .timeline-body {
  border-color: var(--accent);
  transform: translateX(4px);
}

.timeline-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.timeline-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

#poradnik {
  padding: 120px 5vw 100px;
  background: var(--bg-base);
}

.guide-block {
  max-width: 1200px;
  margin: 0 auto;
}

.guide-intro {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: -30px auto 50px;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guide-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 35px 30px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.guide-card i {
  font-size: 30px;
  color: var(--accent);
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 16px;
  margin-bottom: 12px;
}

.guide-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  grid-column: 1 / -1;
  grid-row: 3;
}

.guide-card .guide-tag {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  user-select: none;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-note {
  margin-top: 30px;
  padding: 20px 25px;
  background: rgba(0, 168, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.guide-note strong {
  color: var(--text-main);
}

.guide-note a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.guide-note a:hover {
  text-decoration: underline;
}

#kontakt {
  padding: 80px 5vw;
  background: var(--bg-surface);
  text-align: center;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s;
  text-align: center;
}

.info-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.info-box i {
  font-size: 45px;
  color: var(--accent);
  margin-bottom: 20px;
}

.info-box h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.info-box h3 a {
  color: inherit;
  text-decoration: none;
}

.info-box p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.5;
}

.box-primary {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.05);
  padding: 50px 40px;
}

.address-tag {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.address-tag i {
  font-size: 16px;
  margin: 0;
  color: var(--accent);
}

#faq {
  padding: 0px 5vw 100px;
  background: var(--bg-base);
}

.faq-block {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.35s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  animation: faqFade 0.35s ease;
}

.faq-answer p {
  max-width: 640px;
}



@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: left;
  padding: 40px;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 14px;
}

footer b {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.glows {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.scan-beam {
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  height: 160px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 168, 255, 0.05) 30%,
      rgba(0, 168, 255, 0.20) 48%,
      rgba(0, 168, 255, 0.35) 50%,
      rgba(0, 168, 255, 0.20) 52%,
      rgba(0, 168, 255, 0.05) 70%,
      transparent 100%);
  filter: blur(0.5px);
  animation: scanSweep 7s cubic-bezier(0.85, 0, 0.15, 1) infinite;
  will-change: transform;
}

.scan-beam::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  box-shadow: 0 0 8px 1px var(--accent-glow);
}

@keyframes scanSweep {
  0% {
    transform: translateY(-160px);
  }

  50% {
    transform: translateY(80vh);
  }

  100% {
    transform: translateY(-160px);
  }
}

.glows span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 5px 1px var(--accent-glow);
  opacity: 0;
  animation: pixelFlicker ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes pixelFlicker {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  46% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  58% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {

  .scan-beam,
  .glows span {
    animation: none;
    opacity: 0;
  }
}

header,
#hero,
#o-mnie,
#opinie,
#jak-to-dziala,
#poradnik,
#faq,
#kontakt,
footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-photo-img {
    display: none;
  }
}

@media (max-width: 1080px) {
  header {
    padding: 20px 30px;
  }

  .nav-links {
    gap: 20px;
    margin-left: 12px;
    margin-right: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 40px;
  }

  header {
    padding: 20px;
  }

  .header-phone span {
    display: none;
  }

  #hero,
  #o-mnie,
  #jak-to-dziala,
  #poradnik,
  #faq,
  #kontakt {
    padding: 60px 20px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .glow-card-inner {
    padding: 30px 20px;
  }

  .marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
  }

  .marquee::-webkit-scrollbar {
    display: none;
  }

  .marquee-content {
    animation: none !important;
    min-width: auto;
  }

  .marquee-content:nth-of-type(2) {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: start;
    width: 78vw;
    max-width: 340px;
  }

  .timeline {
    padding-left: 50px;
  }



  .timeline-icon {
    left: -50px;
    width: 36px;
    height: 36px;
  }

  .timeline-icon i {
    font-size: 14px;
  }

  .timeline-body {
    padding: 20px;
  }
}

/* ── Cookie consent bar ── */

#cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border-subtle);
  transform: translateY(100%);
  transition: transform 0.4s ease, visibility 0.4s;
}

#cookie-bar.visible {
  visibility: visible;
  transform: translateY(0);
}

#cookie-bar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

#cookie-bar p a {
  color: var(--text-muted);
  text-decoration: underline;
}

#cookie-bar p a:hover {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.cookie-actions button:hover {
  border-color: var(--accent);
  color: var(--text-main);
}

#cookie-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

#cookie-accept:hover {
  box-shadow: 0 0 12px var(--accent-glow);
}

@media (max-width: 600px) {
  #cookie-bar {
    padding: 8px 12px;
    gap: 10px;
  }

  #cookie-bar p {
    font-size: 11px;
    flex-basis: 100%;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

.policy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 5vw;
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-container h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--text-main);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.policy-container h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-main);
  margin: 40px 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-container p {
  margin-bottom: 15px;
}

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

.policy-container a:hover {
  text-decoration: underline;
}

.back-btn {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: var(--accent);
}