<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import normalize.css */
@import 'normalize.css';

/* Base styles */
body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--first-color);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}

.container{
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 1200px;
}

button:empty,
a:empty {
  display: none;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: .3s;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  margin-bottom: 80px;
}

.policy {
  margin-top: 40px;
}

.policy__wrapper {
  background-color: var(--policy-bg);
  padding: 40px;
  overflow-wrap: anywhere;
}

.policy h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.policy h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.policy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}

.policy ul {
  margin-left: 40px;
}

.policy ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.policy a {
  color: var(--accent-color);
}


@media (max-width: 524px) {
  .policy ul {
    margin-left: 0px;
  }
}




</pre></body></html>