/* style/resources-tx88-security-deep-dive.css */
.page-resources-tx88-security-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0F1A2D; /* A slightly lighter dark blue for overall background */
}

.page-resources-tx88-security-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-tx88-security-deep-dive__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1A2D);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-resources-tx88-security-deep-dive__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-resources-tx88-security-deep-dive__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #A0A0A0; /* Lighter gray for subtitle */
}

.page-resources-tx88-security-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-tx88-security-deep-dive__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-resources-tx88-security-deep-dive__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-tx88-security-deep-dive__btn--primary:hover {
  background-color: #e5c100; /* Darker gold */
  transform: translateY(-3px);
}

.page-resources-tx88-security-deep-dive__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources-tx88-security-deep-dive__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-3px);
}

.page-resources-tx88-security-deep-dive__section {
  padding: 60px 0;
}

.page-resources-tx88-security-deep-dive__section--alt-bg {
  background-color: #1A2B4C; /* Primary dark blue for alternating sections */
}

.page-resources-tx88-security-deep-dive__content-wrapper {
  padding: 40px 20px;
  background-color: #1A2B4C; /* Ensure content background is dark blue */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-tx88-security-deep-dive__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-tx88-security-deep-dive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-tx88-security-deep-dive__content-wrapper p,
.page-resources-tx88-security-deep-dive__content-wrapper li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray for body text */
}

.page-resources-tx88-security-deep-dive__content-wrapper ul {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
}

.page-resources-tx88-security-deep-dive__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-tx88-security-deep-dive__image--small {
  max-width: 60%;
  margin: 20px auto;
}

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

.page-resources-tx88-security-deep-dive__grid-item {
  background-color: #0F1A2D; /* Dark blue for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-tx88-security-deep-dive__item-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
}

.page-resources-tx88-security-deep-dive__grid-item p {
  color: #C0C0C0; /* Lighter gray for grid item text */
  font-size: 1em;
}

.page-resources-tx88-security-deep-dive__final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #0F1A2D, #1A2B4C);
}

.page-resources-tx88-security-deep-dive__final-cta .page-resources-tx88-security-deep-dive__section-title {
  color: #FFD700;
}

.page-resources-tx88-security-deep-dive__final-cta .page-resources-tx88-security-deep-dive__section-title::after {
  background-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-tx88-security-deep-dive__title {
    font-size: 2.5em;
  }

  .page-resources-tx88-security-deep-dive__subtitle {
    font-size: 1.1em;
  }

  .page-resources-tx88-security-deep-dive__section-title {
    font-size: 2em;
  }

  .page-resources-tx88-security-deep-dive__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-tx88-security-deep-dive__cta-buttons {
    flex-direction: column;
  }

  .page-resources-tx88-security-deep-dive__image--small {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-resources-tx88-security-deep-dive__title {
    font-size: 2em;
  }

  .page-resources-tx88-security-deep-dive__subtitle {
    font-size: 1em;
  }

  .page-resources-tx88-security-deep-dive__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-tx88-security-deep-dive__section-title {
    font-size: 1.8em;
  }
}