* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
  background: url("../images/body-bg.webp") center center no-repeat fixed;
  background-size: cover;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  overflow-x: hidden;
  cursor: default;
}
a {
  font-family: inherit;
  color: #0066cc;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: #004c99;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e6af5d;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 9999;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.back-to-top:hover {
  background-color: #30373f;
}
.back-to-top i {
  line-height: 1;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
.widget-hidden {
  bottom: 80px;
}
@media (max-width: 768px) {
  .widget-hidden {
    bottom: 100px;
  }
}
#privacy-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #ddd;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
#privacy-modal .modal-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
#privacy-modal .modal-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
#privacy-modal .modal-text a {
  color: #f20e0e;
  text-decoration: underline;
}
#privacy-modal .modal-buttons {
  display: flex;
  gap: 10px;
}
#privacy-modal .btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}
#privacy-modal .btn-accept {
  background: #e6af5d;
  color: #fff;
}
#privacy-modal .btn-decline {
  background: #ddd;
  color: #333;
}
@media (max-width:768px) {
  #privacy-modal .modal-content {
    flex-direction: column;
    text-align: center;
  }
  #privacy-modal .modal-text {
    font-size: 14px;
  }
}