/* style/newbie-guide-first-deposit.css */

.page-newbie-guide-first-deposit {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-newbie-guide-first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-newbie-guide-first-deposit__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-newbie-guide-first-deposit__hero-content {
    max-width: 600px;
}

.page-newbie-guide-first-deposit__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-newbie-guide-first-deposit__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-newbie-guide-first-deposit__hero-btn {
    display: inline-block;
    background-color: #ff8400; /* Contrasting color for CTA */
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__hero-btn:hover {
    background-color: #e67300;
    transform: translateY(-2px);
}

.page-newbie-guide-first-deposit__hero-image-wrapper {
    flex-shrink: 0;
}

.page-newbie-guide-first-deposit__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-newbie-guide-first-deposit__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-newbie-guide-first-deposit__section:last-of-type {
    border-bottom: none;
}

.page-newbie-guide-first-deposit__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-newbie-guide-first-deposit__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

/* Why Deposit Section */
.page-newbie-guide-first-deposit__why-deposit {
    background-color: #f0f8ff;
    text-align: center;
}

.page-newbie-guide-first-deposit__why-deposit p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.page-newbie-guide-first-deposit__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-newbie-guide-first-deposit__list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #444;
}

.page-newbie-guide-first-deposit__list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #28a745;
    font-size: 1.3em;
}

/* Basic icon placeholders */
.page-newbie-guide-first-deposit__list li i.icon-check::before { content: '✔'; }
.page-newbie-guide-first-deposit__list li i.icon-payment::before { content: '💳'; }

.page-newbie-guide-first-deposit__section-image {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-first-deposit__section-image--small {
    max-width: 60%;
}

/* Steps Section */
.page-newbie-guide-first-deposit__steps {
    background-color: #fff;
}

.page-newbie-guide-first-deposit__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.page-newbie-guide-first-deposit__step-number {
    background-color: #007bff;
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__step-content {
    flex: 1;
    text-align: left;
    max-width: calc(100% - 100px); /* Adjust for number width + gap */
}

.page-newbie-guide-first-deposit__step-content h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__step-content p {
    margin-bottom: 20px;
    color: #555;
}

.page-newbie-guide-first-deposit__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.page-newbie-guide-first-deposit__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.page-newbie-guide-first-deposit__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #333;
}

/* Tips Section */
.page-newbie-guide-first-deposit__tips {
    background-color: #f0f8ff;
    text-align: center;
}

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

.page-newbie-guide-first-deposit__tip-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-newbie-guide-first-deposit__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide-first-deposit__tip-card h3 {
    color: #28a745;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__tip-card p {
    color: #666;
    font-size: 1em;
}

/* FAQ Section */
.page-newbie-guide-first-deposit__faq {
    background-color: #fff;
}

.page-newbie-guide-first-deposit__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    transition: background-color 0.3s ease;
}

.page-newbie-guide-first-deposit__faq-item:hover {
    background-color: #f0f8ff;
}

.page-newbie-guide-first-deposit__faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-newbie-guide-first-deposit__faq-item p {
    color: #555;
    font-size: 1em;
    margin-top: 0;
    padding-left: 10px;
}

/* Final CTA Section */
.page-newbie-guide-first-deposit__cta-final {
    background: linear-gradient(to right, #007bff, #28a745);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.page-newbie-guide-first-deposit__cta-final-content {
    max-width: 900px;
}

.page-newbie-guide-first-deposit__cta-final .page-newbie-guide-first-deposit__section-title {
    color: #fff;
    margin-bottom: 30px;
}

.page-newbie-guide-first-deposit__cta-final .page-newbie-guide-first-deposit__section-title::after {
    background-color: #ff8400;
}

.page-newbie-guide-first-deposit__cta-final p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.page-newbie-guide-first-deposit__secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-left: 20px;
}

.page-newbie-guide-first-deposit__secondary-btn:hover {
    background-color: #fff;
    color: #007bff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-newbie-guide-first-deposit__hero {
        flex-direction: column;
        padding: 60px 20px;
    }
    .page-newbie-guide-first-deposit__hero-image-wrapper {
        margin-top: 40px;
    }
    .page-newbie-guide-first-deposit__hero-title {
        font-size: 2.5em;
    }
    .page-newbie-guide-first-deposit__hero-description {
        font-size: 1em;
    }
    .page-newbie-guide-first-deposit__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-newbie-guide-first-deposit__step-number {
        margin-bottom: 20px;
    }
    .page-newbie-guide-first-deposit__step-content {
        max-width: 100%;
    }
    .page-newbie-guide-first-deposit__secondary-btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-newbie-guide-first-deposit__section-title {
        font-size: 2em;
    }
    .page-newbie-guide-first-deposit__section {
        padding: 40px 0;
    }
    .page-newbie-guide-first-deposit__hero-btn, .page-newbie-guide-first-deposit__secondary-btn {
        width: 100%;
        max-width: 300px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-newbie-guide-first-deposit__cta-final-content .page-newbie-guide-first-deposit__hero-btn {
        margin-bottom: 15px;
    }
    .page-newbie-guide-first-deposit__hero-image {
        max-width: 90%;
    }
    .page-newbie-guide-first-deposit__section-image--small {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-first-deposit__hero-title {
        font-size: 2em;
    }
    .page-newbie-guide-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-newbie-guide-first-deposit__step-content h3 {
        font-size: 1.5em;
    }
    .page-newbie-guide-first-deposit__tip-card h3 {
        font-size: 1.3em;
    }
    .page-newbie-guide-first-deposit__faq-item h3 {
        font-size: 1.2em;
    }
}