/* style/deposit-withdrawal-guides-withdrawal-process-speed.css */

:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-light: #F7FAFC;
    --text-dark: #2D3748;
    --background-light: #EDF2F7;
    --background-dark-alt: #2D3748;
    --border-color: #E2E8F0;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a475d 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    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;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

/* Intro Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .intro-section {
    padding: 60px 0;
    background-color: var(--text-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .intro-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .intro-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .intro-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .process-section {
    padding: 80px 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .process-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .step-icon {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .step-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    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;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-secondary:hover {
    background-color: #2c3a4e; /* Slightly lighter primary */
    transform: translateY(-2px);
}

/* Methods Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .methods-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .methods-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-card h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-card ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-dark);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .method-card ul li strong {
    color: var(--primary-color);
}

/* Speed Factors Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .speed-factors-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .speed-factors-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .factors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .factor-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .factor-item i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .factor-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Tips Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .tips-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .tips-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .tip-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .tip-item img.tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .tip-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Common Issues Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .common-issues-section {
    padding: 80px 0;
    background-color: var(--background-dark-alt);
    color: var(--text-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .common-issues-section h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .common-issues-section p {
    font-size: 1.1em;
    text-align: justify;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .issue-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .issue-card {
    background-color: #3A475D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .issue-card h3 {
    color: var(--secondary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Security Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .security-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .security-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .security-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .security-item i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .security-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .responsible-gambling {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .responsible-gambling a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .responsible-gambling a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-light {
    background-color: var(--text-light);
    color: var(--primary-color);
    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;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-light:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid var(--text-light);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-deposit-withdrawal-guides-withdrawal-process-speed .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section h1 {
        font-size: 2.5em;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section p,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section p {
        font-size: 1em;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .process-steps,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .method-grid,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .factors-list,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .tips-grid,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .issue-solution-grid,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .security-points {
        grid-template-columns: 1fr;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section h2 {
        font-size: 2.2em;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .btn-primary,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .btn-secondary,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .btn-light,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .btn-outline-light {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section h1 {
        font-size: 2em;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed .hero-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .intro-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .process-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .methods-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .speed-factors-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .tips-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .common-issues-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .security-section,
    .page-deposit-withdrawal-guides-withdrawal-process-speed .cta-section {
        padding: 40px 0;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed h2 {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-guides-withdrawal-process-speed h3 {
        font-size: 1.3em;
    }
}