/* style/payment-methods-security-guarantee.css */
.page-payment-methods-security-guarantee {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-payment-methods-security-guarantee__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Darker blue to slightly lighter blue */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-payment-methods-security-guarantee__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  font-weight: bold;
}

.page-payment-methods-security-guarantee__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-payment-methods-security-guarantee__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-payment-methods-security-guarantee__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-payment-methods-security-guarantee__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-payment-methods-security-guarantee__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-payment-methods-security-guarantee__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-payment-methods-security-guarantee__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-payment-methods-security-guarantee__btn--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-payment-methods-security-guarantee__content-section,
.page-payment-methods-security-guarantee__security-measures,
.page-payment-methods-security-guarantee__payment-methods,
.page-payment-methods-security-guarantee__transaction-process,
.page-payment-methods-security-guarantee__commitment,
.page-payment-methods-security-guarantee__personal-tips,
.page-payment-methods-security-guarantee__cta-final,
.page-payment-methods-security-guarantee__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-security-guarantee__content-section {
  background-color: #f0f5fa; /* Light blue tint for contrast */
}

.page-payment-methods-security-guarantee__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-payment-methods-security-guarantee__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-payment-methods-security-guarantee__paragraph {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-payment-methods-security-guarantee__security-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-payment-methods-security-guarantee__security-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods-security-guarantee__security-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods-security-guarantee__item-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-payment-methods-security-guarantee__item-description {
  color: #666;
  font-size: 1em;
}

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

.page-payment-methods-security-guarantee__payment-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-payment-methods-security-guarantee__payment-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods-security-guarantee__payment-icon {
  width: 100px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods-security-guarantee__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #003366;
  border-radius: 8px;
  color: #ffffff;
}

.page-payment-methods-security-guarantee__cta-text {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #FFCC00;
  font-weight: bold;
}

.page-payment-methods-security-guarantee__process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-payment-methods-security-guarantee__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.page-payment-methods-security-guarantee__step-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods-security-guarantee__list {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
  color: #555;
}

.page-payment-methods-security-guarantee__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-payment-methods-security-guarantee__list li::before {
  content: '✔';
  color: #003366;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods-security-guarantee__list--columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 40px;
  text-align: left;
}

.page-payment-methods-security-guarantee__list-strong {
  color: #003366;
}

.page-payment-methods-security-guarantee__cta-final {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods-security-guarantee__cta-final .page-payment-methods-security-guarantee__section-title {
  color: #FFCC00;
}

.page-payment-methods-security-guarantee__cta-final .page-payment-methods-security-guarantee__paragraph {
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-payment-methods-security-guarantee__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-payment-methods-security-guarantee__faq-list {
  margin-top: 40px;
}

.page-payment-methods-security-guarantee__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-payment-methods-security-guarantee__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods-security-guarantee__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
}

.page-payment-methods-security-guarantee__faq-question.active::after {
  content: '-';
}

.page-payment-methods-security-guarantee__faq-answer {
  font-size: 1em;
  color: #666;
  margin-top: 10px;
  display: none;
}

.page-payment-methods-security-guarantee__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods-security-guarantee__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-security-guarantee__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-security-guarantee__section-title {
    font-size: 2em;
  }
  .page-payment-methods-security-guarantee__list--columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-security-guarantee__hero-section {
    padding: 80px 0;
  }
  .page-payment-methods-security-guarantee__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-security-guarantee__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-security-guarantee__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-security-guarantee__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-payment-methods-security-guarantee__grid,
  .page-payment-methods-security-guarantee__payment-grid,
  .page-payment-methods-security-guarantee__process-steps {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-security-guarantee__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-security-guarantee__cta-final {
    padding: 60px 0;
  }
  .page-payment-methods-security-guarantee__cta-buttons {
    flex-direction: column;
  }
  .page-payment-methods-security-guarantee__btn--large {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-security-guarantee__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-security-guarantee__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods-security-guarantee__btn {
    width: 95%;
  }
  .page-payment-methods-security-guarantee__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-security-guarantee__paragraph {
    font-size: 0.9em;
  }
  .page-payment-methods-security-guarantee__cta-final {
    padding: 40px 0;
  }
  .page-payment-methods-security-guarantee__btn--large {
    width: 95%;
  }
}