/* style/newbie-guide-deposit-withdrawal.css */
.page-newbie-guide-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1A2C42; /* Main dark background */
    line-height: 1.6;
}

.page-newbie-guide-deposit-withdrawal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-newbie-guide-deposit-withdrawal .hero-section {
    background: linear-gradient(135deg, #1A2C42 0%, #3a506b 100%); /* Dark blue gradient */
    padding: 100px 0 60px;
    text-align: center;
    color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-deposit-withdrawal .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B147; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-newbie-guide-deposit-withdrawal .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-newbie-guide-deposit-withdrawal .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-newbie-guide-deposit-withdrawal .btn-primary {
    background-color: #E0B147; /* Accent color */
    color: #1A2C42; /* Dark text for accent background */
    border: 2px solid #E0B147;
}

.page-newbie-guide-deposit-withdrawal .btn-primary:hover {
    background-color: #f0c25a;
    border-color: #f0c25a;
    transform: translateY(-2px);
}

.page-newbie-guide-deposit-withdrawal .btn-secondary {
    background-color: transparent;
    color: #E0B147;
    border: 2px solid #E0B147;
}

.page-newbie-guide-deposit-withdrawal .btn-secondary:hover {
    background-color: #E0B147;
    color: #1A2C42;
    transform: translateY(-2px);
}

.page-newbie-guide-deposit-withdrawal section {
    padding: 60px 0;
    background-color: #1A2C42;
}

.page-newbie-guide-deposit-withdrawal section:nth-of-type(even) {
    background-color: #21354a;
}

.page-newbie-guide-deposit-withdrawal h2 {
    font-size: 2.5em;
    color: #E0B147;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-newbie-guide-deposit-withdrawal h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B147;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-newbie-guide-deposit-withdrawal h3 {
    font-size: 1.8em;
    color: #f8f9fa;
    margin-bottom: 15px;
}

.page-newbie-guide-deposit-withdrawal p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-newbie-guide-deposit-withdrawal .content-block {
    background-color: #21354a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.page-newbie-guide-deposit-withdrawal .content-image, .page-newbie-guide-deposit-withdrawal .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-deposit-withdrawal .step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-newbie-guide-deposit-withdrawal .step-item {
    background-color: #2a405a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #E0B147;
}

.page-newbie-guide-deposit-withdrawal .step-item h3 {
    color: #E0B147;
    margin-bottom: 15px;
}

.page-newbie-guide-deposit-withdrawal .step-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-newbie-guide-deposit-withdrawal .step-item ul li {
    background-color: #354e6b;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #f8f9fa;
    font-size: 0.95em;
}

.page-newbie-guide-deposit-withdrawal .step-item ul li strong {
    color: #E0B147;
}

.page-newbie-guide-deposit-withdrawal .note {
    background-color: #3a506b;
    padding: 15px 20px;
    border-left: 5px solid #E0B147;
    border-radius: 5px;
    margin-top: 30px;
    font-style: italic;
    color: #e0e0e0;
}

.page-newbie-guide-deposit-withdrawal .faq-item {
    background-color: #2a405a;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-deposit-withdrawal .faq-item h3 {
    color: #E0B147;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-newbie-guide-deposit-withdrawal .faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-newbie-guide-deposit-withdrawal .faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-newbie-guide-deposit-withdrawal .faq-item p {
    color: #e0e0e0;
    margin-bottom: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, display 0.5s ease-out;
}

.page-newbie-guide-deposit-withdrawal .faq-item.active p {
    display: block;
    max-height: 500px; /* Adjust as needed for content */
}

.page-newbie-guide-deposit-withdrawal .section-responsible-gambling {
    text-align: center;
    padding: 80px 0;
    background-color: #1A2C42;
}

.page-newbie-guide-deposit-withdrawal .section-responsible-gambling h2 {
    color: #E0B147;
    margin-bottom: 30px;
}

.page-newbie-guide-deposit-withdrawal .section-responsible-gambling p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1.15em;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-newbie-guide-deposit-withdrawal .hero-section h1 {
        font-size: 2.5em;
    }
    .page-newbie-guide-deposit-withdrawal .hero-section p {
        font-size: 1em;
    }
    .page-newbie-guide-deposit-withdrawal h2 {
        font-size: 2em;
    }
    .page-newbie-guide-deposit-withdrawal h3 {
        font-size: 1.5em;
    }
    .page-newbie-guide-deposit-withdrawal section {
        padding: 40px 0;
    }
    .page-newbie-guide-deposit-withdrawal .step-by-step {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-deposit-withdrawal .hero-section h1 {
        font-size: 2em;
    }
    .page-newbie-guide-deposit-withdrawal .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-newbie-guide-deposit-withdrawal h2 {
        font-size: 1.8em;
    }
    .page-newbie-guide-deposit-withdrawal h3 {
        font-size: 1.3em;
    }
    .page-newbie-guide-deposit-withdrawal p {
        font-size: 0.95em;
    }
    .page-newbie-guide-deposit-withdrawal .content-block, .page-newbie-guide-deposit-withdrawal .step-item, .page-newbie-guide-deposit-withdrawal .faq-item {
        padding: 20px;
    }
}