/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-beginner-guide-first-deposit .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-first-deposit section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit h1,
.page-beginner-guide-first-deposit h2,
.page-beginner-guide-first-deposit h3,
.page-beginner-guide-first-deposit h4 {
    color: #000080; /* Dark Blue for headings */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit h1 {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit h2 {
    font-size: 2.2em;
    color: #000080;
}

.page-beginner-guide-first-deposit h3 {
    font-size: 1.8em;
    color: #000080;
}

.page-beginner-guide-first-deposit h4 {
    font-size: 1.5em;
    color: #000080;
}

.page-beginner-guide-first-deposit p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #333; /* Ensuring good contrast */
}

.page-beginner-guide-first-deposit .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
    color: #555;
}

.page-beginner-guide-first-deposit .hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%); /* Gold to Dark Blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit .hero-section h1 {
    color: #FFFFFF;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

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

.page-beginner-guide-first-deposit .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-beginner-guide-first-deposit .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark Blue text */
}

.page-beginner-guide-first-deposit .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit .btn-secondary {
    background-color: #000080; /* Dark Blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
    background-color: #000066;
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit .btn-tertiary {
    background-color: #f0f0f0; /* Light gray button */
    color: #000080; /* Dark Blue text */
    border: 1px solid #ddd;
}

.page-beginner-guide-first-deposit .btn-tertiary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit .why-deposit-section,
.page-beginner-guide-first-deposit .promo-section,
.page-beginner-guide-first-deposit .security-responsible-gaming-section {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-beginner-guide-first-deposit .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-beginner-guide-first-deposit .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.page-beginner-guide-first-deposit .content-wrapper .text-content {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide-first-deposit .content-wrapper .image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-beginner-guide-first-deposit .content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-beginner-guide-first-deposit ul li {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
}

.page-beginner-guide-first-deposit ul li strong {
    color: #000080;
}

.page-beginner-guide-first-deposit .step-by-step-guide {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.page-beginner-guide-first-deposit .guide-step {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
}

.page-beginner-guide-first-deposit .guide-step .step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: #000080; /* Dark Blue background for step number */
    color: #FFD700; /* Gold text for step number */
    font-size: 1.8em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.page-beginner-guide-first-deposit .guide-step h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: #000080;
}

.page-beginner-guide-first-deposit .guide-step .step-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.page-beginner-guide-first-deposit .guide-step .step-content img {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit .guide-step .step-content p {
    flex: 2;
    min-width: 300px;
    margin-bottom: 15px;
    color: #333;
}

.page-beginner-guide-first-deposit .guide-step .step-content .btn {
    margin-right: 15px;
}

.page-beginner-guide-first-deposit .deposit-methods-section {
    background-color: #e9e9e9;
}

.page-beginner-guide-first-deposit .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit .method-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit .method-card:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-first-deposit .method-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .method-card h3 {
    color: #000080;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.page-beginner-guide-first-deposit .method-card p {
    color: #555;
    font-size: 1em;
}

.page-beginner-guide-first-deposit .promo-section {
    background-color: #f0f0f0;
}

.page-beginner-guide-first-deposit .tips-section .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit .tip-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit .tip-card:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-first-deposit .tip-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .tip-card h3 {
    color: #000080;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.page-beginner-guide-first-deposit .tip-card p {
    color: #555;
    font-size: 1em;
}

.page-beginner-guide-first-deposit .faq-section {
    background-color: #e9e9e9;
}

.page-beginner-guide-first-deposit .faq-items {
    margin-top: 40px;
}

.page-beginner-guide-first-deposit .faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px;
}

.page-beginner-guide-first-deposit .faq-item h3 {
    color: #000080;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    text-align: left;
}

.page-beginner-guide-first-deposit .faq-item p {
    color: #333;
    font-size: 1em;
}

.page-beginner-guide-first-deposit .cta-final-section {
    background-color: #000080; /* Dark Blue background for final CTA */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .cta-final-section h2 {
    color: #FFD700; /* Gold text for CTA title */
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit .cta-final-section p {
    color: #eee;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

.page-beginner-guide-first-deposit .cta-final-section .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-first-deposit h1 {
        font-size: 2.2em;
    }
    .page-beginner-guide-first-deposit h2 {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit h3 {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit .hero-section {
        padding: 80px 0;
    }
    .page-beginner-guide-first-deposit .content-wrapper {
        flex-direction: column;
    }
    .page-beginner-guide-first-deposit .content-wrapper.reverse {
        flex-direction: column;
    }
    .page-beginner-guide-first-deposit .step-by-step-guide .guide-step .step-content {
        flex-direction: column;
    }
    .page-beginner-guide-first-deposit .guide-step .step-number {
        position: static;
        margin-bottom: 20px;
        border-radius: 8px;
        padding: 8px 15px;
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit .guide-step h3 {
        text-align: center;
    }
    .page-beginner-guide-first-deposit .cta-final-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit h1 {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit h2 {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit h3 {
        font-size: 1.3em;
    }
    .page-beginner-guide-first-deposit .btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-beginner-guide-first-deposit .hero-section {
        padding: 60px 0;
    }
    .page-beginner-guide-first-deposit section {
        padding: 40px 0;
    }
    .page-beginner-guide-first-deposit .why-deposit-section,
    .page-beginner-guide-first-deposit .promo-section,
    .page-beginner-guide-first-deposit .security-responsible-gaming-section {
        padding: 20px;
    }
}