/* style/payment-methods.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

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

.page-payment-methods-hero {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.page-payment-methods-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-payment-methods-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.page-payment-methods-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
}

.page-payment-methods-hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-payment-methods-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-payment-methods-cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.page-payment-methods-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-payment-methods-section:last-of-type {
    border-bottom: none;
}

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

.page-payment-methods-section h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-payment-methods-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-payment-methods-section h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-payment-methods-introduction p, .page-payment-methods-deposit p, .page-payment-methods-withdrawal p, .page-payment-methods-security p, .page-payment-methods-contact p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-payment-methods-feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-feature-image {
    width: 250px; /* Enlarge image size */
    height: 250px; /* Enlarge image size */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-payment-methods-feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-payment-methods-method-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-method-image {
    width: 200px; /* Minimum size */
    height: 200px; /* Minimum size */
    object-fit: contain;
    margin-right: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-payment-methods-method-details h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 0;
}

.page-payment-methods-method-details ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-payment-methods-method-details ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-payment-methods-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.page-payment-methods-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-payment-methods-step-list {
    list-style: none;
    padding: 0;
}

.page-payment-methods-step-list li {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.page-payment-methods-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.page-payment-methods-step-number {
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-payment-methods-step-list h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.6em;
}

.page-payment-methods-step-list p {
    margin-left: 55px; /* Align with step content */
    font-size: 1.05em;
    text-align: justify;
}

.page-payment-methods-full-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-payment-methods-withdrawal ul li {
    margin-bottom: 10px;
}

.page-payment-methods-security ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-payment-methods-security ul li {
    margin-bottom: 10px;
}

/* FAQ styles */
.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough to contain content */
  padding: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
    font-size: 1em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-payment-methods-contact-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
}

.page-payment-methods-contact-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-hero-content h1 {
        font-size: 2.8em;
    }
    .page-payment-methods-section h2 {
        font-size: 2.2em;
    }
    .page-payment-methods-method-card {
        flex-direction: column;
        text-align: center;
    }
    .page-payment-methods-method-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-payment-methods-step-list li {
        padding: 20px;
    }
    .page-payment-methods-step-list p {
        margin-left: 0;
        text-align: left;
    }
    .page-payment-methods-step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-payment-methods-step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-hero {
        height: 350px;
    }
    .page-payment-methods-hero-content h1 {
        font-size: 2.2em;
    }
    .page-payment-methods-hero-content p {
        font-size: 1em;
    }
    .page-payment-methods-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-payment-methods-section {
        padding: 40px 0;
    }
    .page-payment-methods-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-payment-methods-section h3 {
        font-size: 1.5em;
    }
    .page-payment-methods-feature-grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-feature-image {
        width: 200px;
        height: 200px;
    }
    .page-payment-methods-method-card {
        padding: 20px;
    }
    .page-payment-methods-method-image {
        width: 180px;
        height: 180px;
    }
    .page-payment-methods-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    .faq-question {
        padding: 12px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 18px;
    }
    .page-payment-methods-contact-list li {
        font-size: 1em;
    }
}