/* style/payment-methods-withdrawal-limits-times.css */
.page-payment-methods-withdrawal-limits-times {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

.page-payment-methods-withdrawal-limits-times__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-withdrawal-limits-times__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-payment-methods-withdrawal-limits-times__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-withdrawal-limits-times__hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-payment-methods-withdrawal-limits-times__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-payment-methods-withdrawal-limits-times__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

.page-payment-methods-withdrawal-limits-times__section {
    padding: 60px 20px;
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-payment-methods-withdrawal-limits-times__section:nth-of-type(even) {
    background-color: #1f1f1f;
}

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

.page-payment-methods-withdrawal-limits-times h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods-withdrawal-limits-times h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CC0000;
    border-radius: 2px;
}

.page-payment-methods-withdrawal-limits-times h3 {
    font-size: 1.8em;
    color: #CC0000;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-payment-methods-withdrawal-limits-times p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-payment-methods-withdrawal-limits-times strong {
    color: #FFD700;
}

.page-payment-methods-withdrawal-limits-times__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-payment-methods-withdrawal-limits-times__card {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
}

.page-payment-methods-withdrawal-limits-times__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-withdrawal-limits-times__card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.page-payment-methods-withdrawal-limits-times__card p {
    color: #d0d0d0;
    font-size: 1em;
}

.page-payment-methods-withdrawal-limits-times__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-payment-methods-withdrawal-limits-times__note {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #aaa;
    font-size: 0.95em;
}

.page-payment-methods-withdrawal-limits-times__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-payment-methods-withdrawal-limits-times table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

.page-payment-methods-withdrawal-limits-times th, .page-payment-methods-withdrawal-limits-times td {
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    text-align: left;
    color: #e0e0e0;
}

.page-payment-methods-withdrawal-limits-times th {
    background-color: #CC0000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.page-payment-methods-withdrawal-limits-times tr:nth-child(even) {
    background-color: #2a2a2a;
}

.page-payment-methods-withdrawal-limits-times tr:hover {
    background-color: #444;
}

.page-payment-methods-withdrawal-limits-times__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-payment-methods-withdrawal-limits-times__list li {
    background-color: #333;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #d0d0d0;
    font-size: 1.05em;
    transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-limits-times__list li:hover {
    background-color: #444;
}

.page-payment-methods-withdrawal-limits-times__list li strong {
    color: #CC0000;
}

.page-payment-methods-withdrawal-limits-times__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-payment-methods-withdrawal-limits-times__ordered-list li {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-payment-methods-withdrawal-limits-times__ordered-list li strong {
    color: #FFD700;
}

.page-payment-methods-withdrawal-limits-times__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-withdrawal-limits-times__faq-item {
    background-color: #333;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-limits-times__faq-item:hover {
    background-color: #444;
}

.page-payment-methods-withdrawal-limits-times__faq-item h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-payment-methods-withdrawal-limits-times__faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    color: #CC0000;
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-limits-times__faq-item.active h3::after {
    transform: rotate(45deg);
}

.page-payment-methods-withdrawal-limits-times__faq-item p {
    color: #d0d0d0;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-payment-methods-withdrawal-limits-times__faq-item.active p {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
    margin-top: 15px;
}

.page-payment-methods-withdrawal-limits-times__cta-button {
    display: inline-block;
    background-color: #CC0000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-payment-methods-withdrawal-limits-times__cta-button:hover {
    background-color: #FFD700;
    color: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-withdrawal-limits-times__cta-button--secondary {
    background-color: #FFD700;
    color: #CC0000;
}

.page-payment-methods-withdrawal-limits-times__cta-button--secondary:hover {
    background-color: #CC0000;
    color: #fff;
}

.page-payment-methods-withdrawal-limits-times__cta-final {
    background: linear-gradient(90deg, #CC0000, #FFD700);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.page-payment-methods-withdrawal-limits-times__cta-final-content h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 25px;
}

.page-payment-methods-withdrawal-limits-times__cta-final-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-withdrawal-limits-times__hero h1 {
        font-size: 2.8em;
    }
    .page-payment-methods-withdrawal-limits-times h2 {
        font-size: 2em;
    }
    .page-payment-methods-withdrawal-limits-times h3 {
        font-size: 1.5em;
    }
    .page-payment-methods-withdrawal-limits-times__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-limits-times__hero {
        padding: 60px 15px;
    }
    .page-payment-methods-withdrawal-limits-times__hero h1 {
        font-size: 2.2em;
    }
    .page-payment-methods-withdrawal-limits-times__hero p {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-limits-times__section {
        padding: 40px 15px;
    }
    .page-payment-methods-withdrawal-limits-times h2 {
        font-size: 1.8em;
    }
    .page-payment-methods-withdrawal-limits-times__card {
        padding: 25px;
    }
    .page-payment-methods-withdrawal-limits-times th, .page-payment-methods-withdrawal-limits-times td {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-payment-methods-withdrawal-limits-times__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-payment-methods-withdrawal-limits-times__cta-final-content h2 {
        font-size: 2.5em;
    }
    .page-payment-methods-withdrawal-limits-times__cta-final-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-withdrawal-limits-times__hero h1 {
        font-size: 1.8em;
    }
    .page-payment-methods-withdrawal-limits-times h2 {
        font-size: 1.5em;
    }
    .page-payment-methods-withdrawal-limits-times h3 {
        font-size: 1.3em;
    }
    .page-payment-methods-withdrawal-limits-times__grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-withdrawal-limits-times__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-payment-methods-withdrawal-limits-times__cta-final-content h2 {
        font-size: 2em;
    }
}