/* style/payment-methods-cryptocurrency-guide.css */

/* Variables for colors */
:root {
  --page-primary-color: #003366;
  --page-secondary-color: #FFCC00;
  --page-text-light: #ffffff;
  --page-text-dark: #333333;
  --page-background-light: #f8f9fa;
  --page-background-dark: #002244; /* Slightly darker than primary for contrast */
}

.page-payment-methods-cryptocurrency-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark);
  background-color: var(--page-background-light);
}

.page-payment-methods-cryptocurrency-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-cryptocurrency-guide__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #004d99 100%); /* Gradient of primary color */
  color: var(--page-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-cryptocurrency-guide__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--page-secondary-color); /* Use secondary for emphasis */
  font-weight: bold;
}

.page-payment-methods-cryptocurrency-guide__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--page-text-light);
}

.page-payment-methods-cryptocurrency-guide__cta-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color); /* Dark text on bright button */
  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;
  border: none;
  cursor: pointer;
}

.page-payment-methods-cryptocurrency-guide__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow */
  transform: translateY(-2px);
}

/* Content Section */
.page-payment-methods-cryptocurrency-guide__content-section {
  padding: 60px 0;
  background-color: var(--page-background-light);
}

.page-payment-methods-cryptocurrency-guide__text-block {
  background-color: var(--page-text-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-cryptocurrency-guide__section-title {
  color: var(--page-primary-color);
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--page-secondary-color);
  padding-bottom: 10px;
}

.page-payment-methods-cryptocurrency-guide__subsection-title {
  color: var(--page-primary-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency-guide__text-block p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--page-text-dark);
}

.page-payment-methods-cryptocurrency-guide__text-block ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-text-dark);
}

.page-payment-methods-cryptocurrency-guide__text-block ul li {
  margin-bottom: 8px;
}

.page-payment-methods-cryptocurrency-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-cryptocurrency-guide__inline-cta {
  display: inline-block;
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-payment-methods-cryptocurrency-guide__inline-cta:hover {
  background-color: #004d99; /* Lighter shade of primary */
}

.page-payment-methods-cryptocurrency-guide__cta-group {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-payment-methods-cryptocurrency-guide__cta-group .page-payment-methods-cryptocurrency-guide__cta-button {
  margin: 0 10px;
}

.page-payment-methods-cryptocurrency-guide__cta-button--secondary {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
}

.page-payment-methods-cryptocurrency-guide__cta-button--secondary:hover {
  background-color: #004d99;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-payment-methods-cryptocurrency-guide__faq {
  margin-top: 30px;
}

.page-payment-methods-cryptocurrency-guide__faq-item {
  background-color: var(--page-background-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-payment-methods-cryptocurrency-guide__faq-question {
  color: var(--page-primary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods-cryptocurrency-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-payment-methods-cryptocurrency-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods-cryptocurrency-guide__faq-answer {
  color: var(--page-text-dark);
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-payment-methods-cryptocurrency-guide__faq-answer.active {
  display: block;
}

/* Floating CTA */
.page-payment-methods-cryptocurrency-guide__floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods-cryptocurrency-guide__floating-cta:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods-cryptocurrency-guide__hero-title {
    font-size: 2.5em;
  }

  .page-payment-methods-cryptocurrency-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-payment-methods-cryptocurrency-guide__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-cryptocurrency-guide__subsection-title {
    font-size: 1.4em;
  }

  .page-payment-methods-cryptocurrency-guide__text-block {
    padding: 20px;
  }

  .page-payment-methods-cryptocurrency-guide__cta-group .page-payment-methods-cryptocurrency-guide__cta-button {
    display: block;
    margin: 15px auto;
  }

  .page-payment-methods-cryptocurrency-guide__floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-cryptocurrency-guide__hero-title {
    font-size: 2em;
  }

  .page-payment-methods-cryptocurrency-guide__section-title {
    font-size: 1.5em;
  }

  .page-payment-methods-cryptocurrency-guide__subsection-title {
    font-size: 1.2em;
  }

  .page-payment-methods-cryptocurrency-guide__floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
    font-size: 0.9em;
  }
}