/* style/resources-thomo-cockfighting-platform-security-analysis.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --bg-light: #f8f9fa;
  --bg-dark: #26A9E0;
  --border-color: #e0e0e0;
  --login-color: #EA7C07;
}

.page-resources-thomo-cockfighting-platform-security-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--secondary-color);
}

/* Hero Section */
.page-resources-thomo-cockfighting-platform-security-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #4CAF50 100%); /* Adjusted gradient for vibrancy */
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-thomo-cockfighting-platform-security-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-thomo-cockfighting-platform-security-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-thomo-cockfighting-platform-security-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-thomo-cockfighting-platform-security-analysis__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-thomo-cockfighting-platform-security-analysis__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-thomo-cockfighting-platform-security-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-color); /* Use login color for CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-thomo-cockfighting-platform-security-analysis__cta-button:hover {
  background: #e06c00; /* Slightly darker orange on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-thomo-cockfighting-platform-security-analysis__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-thomo-cockfighting-platform-security-analysis__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-thomo-cockfighting-platform-security-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--login-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__content-area p {
  margin-bottom: 1em;
  font-size: 1.05em;
}

.page-resources-thomo-cockfighting-platform-security-analysis__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-thomo-cockfighting-platform-security-analysis__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto;
}

/* Dark Section Specific Styling */
.page-resources-thomo-cockfighting-platform-security-analysis__dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-thomo-cockfighting-platform-security-analysis__dark-section .page-resources-thomo-cockfighting-platform-security-analysis__section-title {
  color: var(--text-light);
}

/* Grid Layout */
.page-resources-thomo-cockfighting-platform-security-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-resources-thomo-cockfighting-platform-security-analysis__card {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-resources-thomo-cockfighting-platform-security-analysis__dark-section .page-resources-thomo-cockfighting-platform-security-analysis__card {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-resources-thomo-cockfighting-platform-security-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-thomo-cockfighting-platform-security-analysis__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-thomo-cockfighting-platform-security-analysis__dark-section .page-resources-thomo-cockfighting-platform-security-analysis__card-title {
  color: var(--text-light);
}

.page-resources-thomo-cockfighting-platform-security-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__benefits-list li {
  background: var(--bg-light);
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-thomo-cockfighting-platform-security-analysis__benefits-list li strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-resources-thomo-cockfighting-platform-security-analysis__faq-section {
  background-color: var(--bg-light);
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-container {
  margin-top: 40px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-item.active .page-resources-thomo-cockfighting-platform-security-analysis__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--secondary-color);
  border-radius: 0 0 5px 5px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-question:hover {
  background: var(--bg-light);
  border-color: #d0d0d0;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-question:active {
  background: #eeeeee;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__faq-item.active .page-resources-thomo-cockfighting-platform-security-analysis__faq-toggle {
  color: var(--login-color);
  transform: rotate(45deg);
}

/* Bottom CTA Section */
.page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section {
  text-align: center;
  background: linear-gradient(135deg, #4CAF50 0%, var(--primary-color) 100%); /* Adjusted gradient */
  color: var(--text-light);
  padding: 80px 20px;
}

.page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section .page-resources-thomo-cockfighting-platform-security-analysis__section-title {
  color: var(--text-light);
}

.page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section .page-resources-thomo-cockfighting-platform-security-analysis__section-title::after {
  background: var(--login-color);
}

.page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section p {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-thomo-cockfighting-platform-security-analysis__main-title {
    font-size: 2.2em;
  }
  .page-resources-thomo-cockfighting-platform-security-analysis__section-title {
    font-size: 1.8em;
  }
  .page-resources-thomo-cockfighting-platform-security-analysis__card-title {
    font-size: 1.2em;
  }
  .page-resources-thomo-cockfighting-platform-security-analysis__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-thomo-cockfighting-platform-security-analysis__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-thomo-cockfighting-platform-security-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__hero-image img {
    border-radius: 4px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__section {
    padding: 40px 15px;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__image-wrapper img,
  .page-resources-thomo-cockfighting-platform-security-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__section,
  .page-resources-thomo-cockfighting-platform-security-analysis__card,
  .page-resources-thomo-cockfighting-platform-security-analysis__container,
  .page-resources-thomo-cockfighting-platform-security-analysis__grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__grid,
  .page-resources-thomo-cockfighting-platform-security-analysis__grid--2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__benefits-list li {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-thomo-cockfighting-platform-security-analysis__faq-item.active .page-resources-thomo-cockfighting-platform-security-analysis__faq-answer {
    padding: 15px !important;
  }

  .page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section {
    padding: 60px 15px;
  }
  .page-resources-thomo-cockfighting-platform-security-analysis__cta-bottom-section p {
    font-size: 1em;
  }
}