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

html {
  overflow-x: hidden;
  width: 100%;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #1a1a1a;
  background-attachment: fixed;
  overflow-x: hidden;
}

.navbar {
  background: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #4a9eff;
  margin-bottom: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #4a9eff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.hero {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(8px);
  opacity: 0.3;
  z-index: -1;
  width: 200%;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.hero-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  max-width: 800px;
  margin: 24px auto;
  position: relative;
  z-index: 1;
}

.hero-features li {
  margin: 12px 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.feature-tags {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.tag {
  background: #1e3a5f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bookmakers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}

.bookmakers::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -50%;
  right: -50%;
  bottom: -100px;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
  width: 200%;
}

.bookmaker-card {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.bookmaker-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bookmaker-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.star-icon {
  color: #ff0000;
  font-size: 28px;
  background: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.bwin-text {
  font-size: 48px;
  font-style: italic;
}

.unibet-text {
  font-size: 32px;
  letter-spacing: 1px;
}

.unibet-dots {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

.bookmaker-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bookmaker-info p {
  color: #fff;
  font-size: 14px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}

.badge-blue {
  background: #4a6fa5;
}

.bonus-text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.bookmaker-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  margin-right: 16px;
}

.rating-score {
  font-size: 36px;
  font-weight: bold;
  color: #4a9eff;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.btn-play {
  background: #4a9eff;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  min-width: 120px;
}

.btn-play:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
}

.guide {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.guide h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: bold;
}

.guide h3 {
  font-size: 20px;
  margin: 32px 0 16px;
  color: #fff;
  font-weight: bold;
}

.guide p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  font-size: 15px;
}

.guide ul {
  margin: 16px 0 16px 24px;
  list-style: square;
}

.guide li {
  margin: 8px 0;
  line-height: 1.6;
  color: #d1d1d1;
}

.reviews {
  margin-bottom: 48px;
  position: relative;
  padding: 60px 0;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
  width: 200%;
}

.reviews h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: bold;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.footer-info {
  margin-top: 64px;
  background: #1a1a1a;
  padding: 40px 24px;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  height: 60px;
}

.logo-item:hover {
  opacity: 0.8;
}

.logo-item img {
  max-height: 50px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-sections > .footer-section:nth-child(n+3) {
  grid-column: 1 / -1;
}

.footer-section {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}


.footer-section p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #fff;
  font-size: 14px;
}

.footer-section ul {
  margin: 16px 0 16px 24px;
  list-style: square;
}

.footer-section li {
  margin: 8px 0;
  line-height: 1.6;
  color: #fff;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #4a9eff;
}

.footer-copyright {
  text-align: center;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: #d1d1d1;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-menu {
    font-size: 12px;
    gap: 12px;
    padding: 0;
  }

  .nav-menu li {
    margin: 0;
  }

  .hero {
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 24px;
    padding: 0 16px;
    color: #ffffff;
  }

  .hero-features {
    padding: 0 16px;
  }

  .hero-features li {
    font-size: 14px;
    color: #ffffff;
  }

  .feature-tags {
    padding: 0 16px;
    gap: 12px;
  }

  .tag {
    font-size: 12px;
    padding: 10px 16px;
  }

  .bookmakers {
    padding: 0;
  }

  .bookmakers::before {
    left: -100%;
    right: -100%;
  }

  .bookmaker-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .bookmaker-content {
    flex-direction: column;
    width: 100%;
  }

  .bookmaker-logo {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }

  .bookmaker-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .bookmaker-info {
    width: 100%;
    text-align: left;
  }

  .bookmaker-rating {
    margin: 0;
    min-width: auto;
  }

  .btn-play {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .guide {
    padding: 24px 16px;
  }

  .guide h2 {
    font-size: 22px;
  }

  .guide h3 {
    font-size: 18px;
  }

  .guide p,
  .guide li {
    font-size: 14px;
  }

  .reviews {
    padding: 40px 0;
  }

  .reviews::before {
    left: -100%;
    right: -100%;
  }

  .reviews h2 {
    font-size: 24px;
    padding: 0 16px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .footer-info {
    padding: 24px 16px;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-section {
    padding: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-logos {
    gap: 12px;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .logo-item {
    height: 50px;
    flex: 0 0 auto;
  }

  .logo-item img {
    max-height: 40px;
    max-width: 120px;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-sections > .footer-section:nth-child(n+3) {
    grid-column: 1;
  }

  .bookmaker-card {
    margin-bottom: 16px;
  }

  .hero-features {
    max-width: 100%;
  }

  h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.about-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.about-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-block h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}

.about-block h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.about-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.about-block ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

.about-block ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin: 12px 0;
  padding-left: 8px;
}

.guide-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.guide-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-block h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}

.guide-block h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.guide-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.guide-block ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

.guide-block ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin: 12px 0;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .about-section::before,
  .guide-section::before,
  .faq-section::before,
  .contact-section::before,
  .responsible-section::before,
  .cookies-section::before,
  .privacy-section::before {
    left: -100%;
    right: -100%;
    width: 200%;
  }

  .about-block,
  .guide-block,
  .responsible-block,
  .cookies-block,
  .privacy-block {
    padding: 24px 16px;
    margin: 0;
  }

  .about-block h2,
  .guide-block h2,
  .responsible-title,
  .cookies-title,
  .privacy-title {
    font-size: 24px;
    padding: 0;
  }

  .about-block h3,
  .guide-block h3,
  .responsible-block h2,
  .cookies-block h2,
  .privacy-block h2 {
    font-size: 18px;
  }

  .about-block p,
  .guide-block p,
  .responsible-block p,
  .cookies-block p,
  .privacy-block p,
  .about-block li,
  .guide-block li,
  .responsible-block li,
  .cookies-block li,
  .privacy-block li {
    font-size: 14px;
  }
}

.faq-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.faq-container {
  background: rgba(60, 60, 60, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  min-width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 64px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-container {
    padding: 20px 16px;
    margin: 0 16px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 48px;
  }

  .faq-icon {
    font-size: 20px;
    min-width: 20px;
  }
}

.contact-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.contact-form-container {
  background: rgba(60, 60, 60, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(74, 158, 255, 0.3);
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.char-counter {
  color: #999;
  font-size: 12px;
  font-weight: normal;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a9eff;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-title {
    font-size: 24px;
    padding: 0 16px;
  }

  .contact-subtitle {
    font-size: 18px;
    padding: 0 16px;
  }

  .contact-intro {
    padding: 0 16px;
    font-size: 14px;
  }

  .contact-form-container {
    padding: 20px 16px;
    margin: 0 16px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
    font-size: 14px;
  }
}

.responsible-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.responsible-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.responsible-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.responsible-block h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.responsible-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.responsible-block ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

.responsible-block ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin: 12px 0;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .responsible-block {
    padding: 32px 24px;
  }

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

  .responsible-block h2 {
    font-size: 20px;
  }
}

.cookies-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.cookies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.cookies-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.cookies-block h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.cookies-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.cookies-block ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

.cookies-block ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin: 12px 0;
  padding-left: 8px;
}

.cookies-block ul li strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cookies-block {
    padding: 32px 24px;
  }

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

  .cookies-block h2 {
    font-size: 20px;
  }
}

.privacy-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
}

.privacy-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.privacy-block h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.privacy-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.privacy-block ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

.privacy-block ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin: 12px 0;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .privacy-block {
    padding: 32px 24px;
  }

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

  .privacy-block h2 {
    font-size: 20px;
  }
}

.conditions-section {
  margin-bottom: 48px;
  position: relative;
  min-height: 600px;
}

.conditions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: url('/images/Photo1.jpeg') center/cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
  width: 200%;
}

.conditions-block {
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.conditions-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.conditions-block h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 32px 0 16px;
}

.conditions-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .conditions-block {
    padding: 24px 16px;
  }

  .conditions-title {
    font-size: 24px;
  }

  .conditions-block h2 {
    font-size: 18px;
  }

  .conditions-block p {
    font-size: 14px;
  }

  .conditions-section::before {
    left: -100%;
    right: -100%;
  }
}
