/* style/resources-online-lottery-security.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --login-color: #EA7C07;
  --black-color: #000000;
}

.page-resources-online-lottery-security {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-resources-online-lottery-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-online-lottery-security__hero-section {
  position: relative;
  background: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  box-sizing: border-box;
}

.page-resources-online-lottery-security__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-online-lottery-security__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-online-lottery-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-online-lottery-security__btn-primary,
.page-resources-online-lottery-security__btn-secondary,
.page-resources-online-lottery-security__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-online-lottery-security__btn-primary {
  background-color: var(--login-color);
  color: var(--text-light);
  border: 2px solid var(--login-color);
}

.page-resources-online-lottery-security__btn-primary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

.page-resources-online-lottery-security__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-resources-online-lottery-security__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--background-dark);
}

.page-resources-online-lottery-security__content-area,
.page-resources-online-lottery-security__features-section,
.page-resources-online-lottery-security__privacy-section,
.page-resources-online-lottery-security__responsible-gaming-section,
.page-resources-online-lottery-security__benefits-section,
.page-resources-online-lottery-security__faq-section,
.page-resources-online-lottery-security__cta-final-section {
  padding: 60px 0;
  box-sizing: border-box;
}

.page-resources-online-lottery-security__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-resources-online-lottery-security__dark-bg .page-resources-online-lottery-security__section-title {
  color: var(--text-light);
}

.page-resources-online-lottery-security__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-online-lottery-security__dark-bg .page-resources-online-lottery-security__paragraph {
  color: var(--text-light);
}

.page-resources-online-lottery-security__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

.page-resources-online-lottery-security__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-online-lottery-security__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-online-lottery-security__dark-bg .page-resources-online-lottery-security__highlight {
  color: var(--secondary-color);
}

.page-resources-online-lottery-security__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-online-lottery-security__card {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-resources-online-lottery-security__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-online-lottery-security__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.page-resources-online-lottery-security__card-text {
  font-size: 1em;
  line-height: 1.6;
  text-align: justify;
}

.page-resources-online-lottery-security__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-online-lottery-security__list-item {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
  font-size: 1.05em;
}

.page-resources-online-lottery-security__dark-bg .page-resources-online-lottery-security__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-left-color: var(--secondary-color);
}

.page-resources-online-lottery-security__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-online-lottery-security__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-online-lottery-security__faq-section {
  padding: 60px 0;
}

.page-resources-online-lottery-security__faq-item {
  background-color: var(--background-light);
  color: var(--text-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-online-lottery-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-resources-online-lottery-security__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-online-lottery-security__faq-title {
  margin: 0;
  font-size: 1em;
  color: var(--primary-color);
}

.page-resources-online-lottery-security__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-online-lottery-security__faq-item.active .page-resources-online-lottery-security__faq-toggle {
  transform: rotate(0deg);
}

.page-resources-online-lottery-security__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
  color: var(--text-dark);
}

.page-resources-online-lottery-security__faq-item.active .page-resources-online-lottery-security__faq-answer {
  max-height: 1000px !important;
  padding: 20px;
}

.page-resources-online-lottery-security__cta-final-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-resources-online-lottery-security__cta-final-section .page-resources-online-lottery-security__section-title {
  color: var(--text-light);
}

.page-resources-online-lottery-security__cta-final-section .page-resources-online-lottery-security__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-resources-online-lottery-security__cta-button {
  font-size: 1.2em;
  padding: 18px 40px;
  border-radius: 10px;
}

.page-resources-online-lottery-security a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-online-lottery-security a:hover {
  text-decoration: underline;
}

.page-resources-online-lottery-security__dark-bg a {
  color: var(--secondary-color);
}

.page-resources-online-lottery-security__dark-bg a:hover {
  color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-online-lottery-security__main-title {
    font-size: 2.5em;
  }
  .page-resources-online-lottery-security__section-title {
    font-size: 2em;
  }
  .page-resources-online-lottery-security__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-online-lottery-security__hero-section {
    padding: 60px 20px 40px;
  }
  .page-resources-online-lottery-security__main-title {
    font-size: 2em;
  }
  .page-resources-online-lottery-security__intro-description {
    font-size: 1em;
  }
  .page-resources-online-lottery-security__section-title {
    font-size: 1.8em;
  }
  .page-resources-online-lottery-security__paragraph,
  .page-resources-online-lottery-security__card-text,
  .page-resources-online-lottery-security__list-item {
    font-size: 0.95em;
  }
  .page-resources-online-lottery-security__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-online-lottery-security__btn-primary,
  .page-resources-online-lottery-security__btn-secondary,
  .page-resources-online-lottery-security__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-online-lottery-security__image,
  .page-resources-online-lottery-security img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-online-lottery-security__image-wrapper,
  .page-resources-online-lottery-security__section,
  .page-resources-online-lottery-security__card,
  .page-resources-online-lottery-security__container,
  .page-resources-online-lottery-security__cta-buttons,
  .page-resources-online-lottery-security__button-group,
  .page-resources-online-lottery-security__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-online-lottery-security__faq-question {
    font-size: 1.1em;
  }
  .page-resources-online-lottery-security__faq-item.active .page-resources-online-lottery-security__faq-answer {
    padding: 15px;
  }
  .page-resources-online-lottery-security__content-area,
  .page-resources-online-lottery-security__features-section,
  .page-resources-online-lottery-security__privacy-section,
  .page-resources-online-lottery-security__responsible-gaming-section,
  .page-resources-online-lottery-security__benefits-section,
  .page-resources-online-lottery-security__faq-section,
  .page-resources-online-lottery-security__cta-final-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-resources-online-lottery-security__main-title {
    font-size: 1.8em;
  }
  .page-resources-online-lottery-security__section-title {
    font-size: 1.6em;
  }
  .page-resources-online-lottery-security__card-title {
    font-size: 1.3em;
  }
}