/* style/resources-b52-club-security-features.css */
.page-resources-b52-club-security-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #0d123e; /* Darker variant of primary for overall background */
}

.page-resources-b52-club-security-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-b52-club-security-features__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #0d123e 70%); /* Primary to darker primary */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-resources-b52-club-security-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-b52-club-security-features__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-resources-b52-club-security-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
}

.page-resources-b52-club-security-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-b52-club-security-features__btn--primary:hover {
  background-color: #e5c300;
  transform: translateY(-3px);
}

.page-resources-b52-club-security-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources-b52-club-security-features__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-resources-b52-club-security-features__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-resources-b52-club-security-features__content-section {
  padding: 80px 0;
}

.page-resources-b52-club-security-features__bg--light {
  background-color: #1A237E; /* Primary dark blue */
  color: #E0E0E0;
}

.page-resources-b52-club-security-features__bg--dark {
  background-color: #0d123e; /* Darker primary */
  color: #E0E0E0;
}

.page-resources-b52-club-security-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-b52-club-security-features__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-b52-club-security-features__article-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-resources-b52-club-security-features__article-content p {
  flex: 1 1 45%;
  min-width: 300px;
  margin-bottom: 20px;
  color: #e0e0e0; /* Light grey for text */
}

.page-resources-b52-club-security-features__article-content p:nth-of-type(odd) {
  order: 1;
}

.page-resources-b52-club-security-features__article-content p:nth-of-type(even) {
  order: 3;
}

.page-resources-b52-club-security-features__image {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-resources-b52-club-security-features__image--left {
  order: 2;
}

.page-resources-b52-club-security-features__image--right {
  order: 2;
}

.page-resources-b52-club-security-features__cta-block {
  flex-basis: 100%;
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-resources-b52-club-security-features__cta-block h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 25px;
}

.page-resources-b52-club-security-features__conclusion-section {
  padding: 80px 0;
  background-color: #1A237E; /* Primary dark blue */
  text-align: center;
  color: #E0E0E0;
}

.page-resources-b52-club-security-features__conclusion-section p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-resources-b52-club-security-features__conclusion-section a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-b52-club-security-features__conclusion-section a:hover {
  text-decoration: underline;
}

.page-resources-b52-club-security-features__final-cta {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-b52-club-security-features__hero-title {
    font-size: 2.8em;
  }

  .page-resources-b52-club-security-features__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-b52-club-security-features__section-title {
    font-size: 2em;
  }

  .page-resources-b52-club-security-features__article-content p,
  .page-resources-b52-club-security-features__image {
    flex-basis: 100%;
    order: unset !important; /* Reset order for small screens */
  }

  .page-resources-b52-club-security-features__image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-b52-club-security-features__hero-title {
    font-size: 2.2em;
  }

  .page-resources-b52-club-security-features__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-b52-club-security-features__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }

  .page-resources-b52-club-security-features__section-title {
    font-size: 1.8em;
  }

  .page-resources-b52-club-security-features__article-content p {
    font-size: 1em;
  }

  .page-resources-b52-club-security-features__cta-block h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-resources-b52-club-security-features__hero-title {
    font-size: 1.8em;
  }

  .page-resources-b52-club-security-features__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-b52-club-security-features__btn {
    display: block;
    margin: 10px auto;
  }

  .page-resources-b52-club-security-features__section-title {
    font-size: 1.5em;
  }

  .page-resources-b52-club-security-features__cta-block {
    padding: 20px;
  }
}