*, *::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Alegreya Sans', sans-serif;
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  color: #000000;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

.ltk_header-container {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ltk_header-top-bar {
  background-color: #000594;
  padding: 8px 20px;
  text-align: center;
}

.ltk_header-responsibility-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ltk_header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1420px;
  margin: 0 auto;
}

.ltk_header-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.ltk_header-contact-link:hover {
  color: #000594;
}

.ltk_header-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.ltk_header-logo img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .ltk_header-main {
    padding: 12px 16px;
  }

  .ltk_header-contact-link {
    font-size: 18px;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .ltk_header-main {
    align-items: flex-start;
    gap: 10px;
  }

  .ltk_header-contact {
    order: 1;
  }
}

@media (max-width: 480px) {
  .ltk_header-responsibility-text {
    font-size: 12px;
  }

  .ltk_header-contact-link {
    font-size: 17px;
  }
}

@media (max-width: 320px) {
  .ltk_header-main {
    padding: 10px 12px;
  }

  .ltk_header-contact-link span {
    padding-top: 10px;
  }
}

.ltk_premium-platform {
  width: 100%;
  min-height: 80vh;
  background: url('../ltk-img/ltk-background-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
}

.ltk_premium-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.ltk_premium-content {
  max-width: 1420px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out forwards;
}

.ltk_premium-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 42px;
  color: #000000;
  margin-bottom: 20px;
}

.ltk_premium-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ltk_premium-advantages {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ltk_premium-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: calc(33% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltk_premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ltk_premium-card i {
  font-size: 36px;
  color: #000594;
  margin-bottom: 15px;
}

.ltk_premium-card h3 {
  font-family: 'Epilogue', sans-serif;
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
}

.ltk_premium-card p {
  font-size: 16px;
  color: #555555;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltk_premium-title {
    font-size: 36px;
  }

  .ltk_premium-description {
    font-size: 16px;
  }

  .ltk_premium-card {
    padding: 25px;
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .ltk_premium-title {
    font-size: 30px;
  }

  .ltk_premium-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ltk_premium-title {
    font-size: 26px;
  }

  .ltk_premium-description {
    font-size: 15px;
  }

  .ltk_premium-card {
    padding: 20px;
  }

  .ltk_premium-card i {
    font-size: 30px;
  }

  .ltk_premium-card h3 {
    font-size: 20px;
  }

  .ltk_premium-card p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .ltk_premium-title {
    font-size: 22px;
  }

  .ltk_premium-description {
    font-size: 14px;
  }

  .ltk_premium-card i {
    font-size: 26px;
  }

  .ltk_premium-card h3 {
    font-size: 18px;
  }
}

.ltk_partners-section {
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ltk_partners-container {
  max-width: 1420px;
  margin: 0 auto;
}

.ltk_partners-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.ltk_partners-description {
  font-size: 18px;
  color: #000000;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out forwards;
}

.ltk_partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  max-width: 685px;
  margin: 0 auto;
}

.ltk_partners-link {
  flex: 0 0 calc(25% - 22px);
  max-width: 150px;
  transition: transform 0.3s ease;
}

.ltk_partners-link:hover {
  transform: scale(1.08);
}

.ltk_partners-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.ltk_partners-legal-icon {
  flex: 0 0 calc(25% - 22px);
  max-width: 150px;
  opacity: 0.8;
  transition: transform 0.4s ease;
}

.ltk_partners-legal-icon:hover {
  transform: rotate(10deg) scale(1.1);
}

.ltk_partners-legal-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltk_partners-title {
    font-size: 32px;
  }

  .ltk_partners-description {
    font-size: 16px;
  }

  .ltk_partners-link,
  .ltk_partners-legal-icon {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .ltk_partners-title {
    font-size: 28px;
  }

  .ltk_partners-description {
    font-size: 15px;
  }

  .ltk_partners-link,
  .ltk_partners-legal-icon {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .ltk_partners-title {
    font-size: 24px;
  }

  .ltk_partners-description {
    font-size: 14px;
  }

  .ltk_partners-link,
  .ltk_partners-legal-icon {
    flex: 0 0 100%;
  }
}

@media (max-width: 320px) {
  .ltk_partners-title {
    font-size: 20px;
  }

  .ltk_partners-description {
    font-size: 13px;
  }
}

.ltk_platforms-section {
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ltk_platforms-container {
  max-width: 1420px;
  margin: 0 auto;
}

.ltk_platforms-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.ltk_platforms-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  color: #000000;
  margin-bottom: 15px;
}

.ltk_platforms-subtext {
  font-size: 18px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ltk_platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.ltk_platform-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  width: calc(30% - 24px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.ltk_platform-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ltk_platform-card img {
  height: 70px;
  width: 170px;
  background: #141612;
  padding: 6px 12px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.ltk_platform-card h3 {
  font-family: 'Epilogue', sans-serif;
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
}

.ltk_platform-benefits {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  color: #444444;
  text-align: left;
  margin-bottom: 20px;
}

.ltk_platform-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ltk_platform-benefits li i {
  font-size: 16px;
  color: #000594;
}

.ltk_platform-rating {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.ltk_platform-visit-btn {
  display: inline-block;
  background-color: #000594;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.ltk_platform-visit-btn:hover {
  background-color: #000355;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltk_platforms-title {
    font-size: 32px;
  }

  .ltk_platforms-subtext {
    font-size: 16px;
  }

  .ltk_platform-card {
    width: calc(30% - 22px);
  }
}

@media (max-width: 768px) {
  .ltk_platforms-title {
    font-size: 28px;
  }

  .ltk_platforms-subtext {
    font-size: 15px;
  }

  .ltk_platform-card {
    width: calc(43.33% - 20px);
  }
}

@media (max-width: 480px) {
  .ltk_platforms-title {
    font-size: 24px;
  }

  .ltk_platforms-subtext {
    font-size: 14px;
    flex-direction: column;
    gap: 5px;
  }

  .ltk_platform-card {
    width: calc(100% - 18px);
    padding: 25px;
  }

  .ltk_platform-card h3 {
    font-size: 20px;
  }

  .ltk_platform-benefits li {
    font-size: 14px;
  }

  .ltk_platform-rating {
    font-size: 14px;
  }

  .ltk_platform-visit-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .ltk_platforms-title {
    font-size: 20px;
  }

  .ltk_platform-card {
    width: 100%;
    padding: 20px;
  }

  .ltk_platform-card h3 {
    font-size: 18px;
  }

  .ltk_platform-benefits li {
    font-size: 13px;
  }

  .ltk_platform-rating {
    font-size: 13px;
  }

  .ltk_platform-visit-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}

.ltk_how-to-play-section {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
}

.ltk_how-to-play-container {
  max-width: 1420px;
  margin: 0 auto;
}

.ltk_how-to-play-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.ltk_how-to-play-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  animation: fadeInUp 1s ease-out forwards;
}

.ltk_how-to-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  width: calc(50% - 15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltk_how-to-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ltk_how-to-card-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 24px;
  color: #000594;
  margin-bottom: 15px;
}

.ltk_how-to-card-description {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltk_how-to-play-title {
    font-size: 32px;
  }

  .ltk_how-to-card {
    width: calc(50% - 12px);
    padding: 25px;
  }

  .ltk_how-to-card-title {
    font-size: 22px;
  }

  .ltk_how-to-card-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ltk_how-to-play-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .ltk_how-to-card {
    width: 100%;
    padding: 20px;
  }

  .ltk_how-to-card-title {
    font-size: 20px;
  }

  .ltk_how-to-card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ltk_how-to-play-title {
    font-size: 24px;
  }
}

@media (max-width: 320px) {
  .ltk_how-to-play-title {
    font-size: 20px;
  }

  .ltk_how-to-card {
    padding: 18px;
  }

  .ltk_how-to-card-title {
    font-size: 18px;
  }

  .ltk_how-to-card-description {
    font-size: 13px;
  }
}

.ltk_footer-main {
  background-color: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.ltk_footer-content {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
}

.ltk_footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.ltk_footer-link {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #000594;
  transition: color 0.3s ease;
}

.ltk_footer-link:hover {
  color: #000000;
}

.ltk_footer-copyright p {
  font-size: 14px;
  color: #666666;
}

@media (max-width: 768px) {
  .ltk_footer-link {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ltk_footer-link {
    font-size: 14px;
  }

  .ltk_footer-copyright p {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .ltk_footer-link {
    font-size: 13px;
  }

  .ltk_footer-copyright p {
    font-size: 12px;
  }
}

.ltk_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.99);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ltk_age-verification.active {
  opacity: 1;
  visibility: visible;
}

.ltk_age-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.99);
}

.ltk_age-content {
  position: relative;
  max-width: 500px;
  padding: 40px;
  background-color: #f3411f;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
  animation: fadeInUp 0.6s ease-out forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ltk_age-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
}

.ltk_age-description {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
}

.ltk_age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.ltk_age-button {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.ltk_age-yes {
  background-color: #ffffff;
  color: #000594;
}

.ltk_age-yes:hover {
  background-color: #e0e0e0;
}

.ltk_age-no {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ltk_age-no:hover {
  background-color: #ffffff;
  color: #000000;
}

.ltk_cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #df746b;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.ltk_cookies-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ltk_cookies-text {
  margin-right: 20px;
}

.ltk_cookies-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.ltk_cookies-accept {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000594;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ltk_cookies-accept:hover {
  background-color: #e0e0e0;
}

.ltk_back-to-top {
  position: fixed;
  right: 30px;
  bottom: 165px;
  width: 50px;
  height: 50px;
  background-color: #000594;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.ltk_back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.ltk_back-to-top:hover {
  background-color: #000355;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ltk_age-content {
    padding: 30px;
    max-width: 90%;
  }

  .ltk_age-title {
    font-size: 24px;
  }

  .ltk_age-description {
    font-size: 15px;
  }

  .ltk_age-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .ltk_cookies-text {
    font-size: 14px;
  }

  .ltk_cookies-accept {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .ltk_cookies-text {
    font-size: 13px;
  }

  .ltk_cookies-accept {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.ltkpages_section-main-title {
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.ltkpages_container-main {
  max-width: 1420px;
  margin: 0 auto;
}

.ltkpages_title-main {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.ltkpages_description-main {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.ltkpages_section-contact-form {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
}

.ltkpages_container-form {
  max-width: 700px;
  margin: 0 auto;
}

.ltkpages_title-form {
  font-family: 'Epilogue', sans-serif;
  font-size: 32px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.ltkpages_contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ltkpages_form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ltkpages_label {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #000000;
}

.ltkpages_input-name,
.ltkpages_input-email {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.ltkpages_input-name:focus,
.ltkpages_input-email:focus {
  border-color: #000594;
}

.ltkpages_textarea-message {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease;
}

.ltkpages_textarea-message:focus {
  border-color: #000594;
}

.ltkpages_checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.ltkpages_checkbox-policy {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.ltkpages_label-policy {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #000000;
}

.ltkpages_link-policy {
  color: #000594;
  text-decoration: underline;
}

.ltkpages_link-policy:hover {
  text-decoration: none;
}

.ltkpages_button-submit {
  background-color: #cccccc;
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.ltkpages_button-submit.active {
  background-color: #000594;
  cursor: pointer;
}

.ltkpages_button-submit.active:hover {
  background-color: #000355;
}

.ltkpages_error-message {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 14px;
  color: #d63030;
  min-height: 20px;
}

.ltkpages_success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ltkpages_modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.5s ease-out forwards;
}

.ltkpages_modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
}

.ltkpages_modal-text {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #000000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ltkpages_title-main {
    font-size: 28px;
  }

  .ltkpages_description-main {
    font-size: 16px;
  }

  .ltkpages_title-form {
    font-size: 26px;
  }

  .ltkpages_label,
  .ltkpages_input-name,
  .ltkpages_input-email,
  .ltkpages_textarea-message {
    font-size: 15px;
  }

  .ltkpages_button-submit {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ltkpages_title-main {
    font-size: 24px;
  }

  .ltkpages_description-main {
    font-size: 14px;
  }

  .ltkpages_title-form {
    font-size: 22px;
  }

  .ltkpages_label,
  .ltkpages_input-name,
  .ltkpages_input-email,
  .ltkpages_textarea-message {
    font-size: 14px;
  }

  .ltkpages_button-submit {
    font-size: 14px;
  }

  .ltkpages_modal-close {
    font-size: 20px;
  }
}

.ltkpages_section-main-title {
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.ltkpages_container-main {
  max-width: 1420px;
  margin: 0 auto;
}

.ltkpages_title-main {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.ltkpages_section-policy-content {
  background-color: #ffffff;
  padding: 80px 20px;
}

.ltkpages_container-policy {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ltkpages_policy-block {
  animation: fadeInUp 0.8s ease-out forwards;
}

.ltkpages_policy-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-size: 24px;
  color: #000594;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ltkpages_policy-text {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltkpages_container-policy {
    gap: 40px;
  }

  .ltkpages_policy-subtitle {
    font-size: 22px;
  }

  .ltkpages_policy-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ltkpages_container-policy {
    gap: 35px;
  }

  .ltkpages_policy-subtitle {
    font-size: 20px;
  }

  .ltkpages_policy-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ltkpages_container-policy {
    gap: 30px;
  }

  .ltkpages_policy-subtitle {
    font-size: 18px;
  }

  .ltkpages_policy-text {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .ltkpages_container-policy {
    gap: 25px;
  }

  .ltkpages_policy-subtitle {
    font-size: 16px;
  }

  .ltkpages_policy-text {
    font-size: 12px;
  }
}

.ltkpages_section-main-title {
  background: linear-gradient(90deg, #b19f9f, #df746b, #f3411f);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.ltkpages_container-main {
  max-width: 1420px;
  margin: 0 auto;
}

.ltkpages_title-main {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.ltkpages_section-cookie-content {
  background-color: #ffffff;
  padding: 80px 20px;
}

.ltkpages_container-cookie {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ltkpages_cookie-block {
  animation: fadeInUp 0.8s ease-out forwards;
}

.ltkpages_cookie-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-size: 24px;
  color: #000594;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ltkpages_cookie-text {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ltkpages_container-cookie {
    gap: 40px;
  }

  .ltkpages_cookie-subtitle {
    font-size: 22px;
  }

  .ltkpages_cookie-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ltkpages_container-cookie {
    gap: 35px;
  }

  .ltkpages_cookie-subtitle {
    font-size: 20px;
  }

  .ltkpages_cookie-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ltkpages_container-cookie {
    gap: 30px;
  }

  .ltkpages_cookie-subtitle {
    font-size: 18px;
  }

  .ltkpages_cookie-text {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .ltkpages_container-cookie {
    gap: 25px;
  }

  .ltkpages_cookie-subtitle {
    font-size: 16px;
  }

  .ltkpages_cookie-text {
    font-size: 12px;
  }
}