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

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

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

.page-beginner-guide-first-deposit__hero {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Adjusted for contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,blue_gold_pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-first-deposit__hero > .page-beginner-guide-first-deposit__container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-beginner-guide-first-deposit__highlight {
    color: #FFD700;
}

.page-beginner-guide-first-deposit__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
}

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

.page-beginner-guide-first-deposit__button--secondary {
    background-color: #007BFF; /* Primary blue */
    color: #ffffff;
    border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit__button--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-beginner-guide-first-deposit__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-beginner-guide-first-deposit__feature-card {
    background-color: #f0f8ff; /* Lighter blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #cceeff;
}

.page-beginner-guide-first-deposit__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-beginner-guide-first-deposit__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-beginner-guide-first-deposit__feature-card h3 {
    font-size: 1.5em;
    color: #0056b3; /* Darker blue */
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__feature-card p {
    color: #555;
}

.page-beginner-guide-first-deposit__text-center {
    text-align: center;
    font-size: 1.1em;
    color: #444;
}

.page-beginner-guide-first-deposit__mt-40 {
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__guide p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__step-by-step {
    margin-top: 30px;
}

.page-beginner-guide-first-deposit__step {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-beginner-guide-first-deposit__step-number {
    background-color: #007BFF;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__step h3 {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__step p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__step ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.page-beginner-guide-first-deposit__step ul li {
    background-color: #e8f5ff;
    border-left: 4px solid #007BFF;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 4px;
    color: #333;
}

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

.page-beginner-guide-first-deposit__inline-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-first-deposit__inline-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-beginner-guide-first-deposit__tips .page-beginner-guide-first-deposit__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-beginner-guide-first-deposit__tips .page-beginner-guide-first-deposit__checklist li {
    background-color: #eafff0; /* Light green for success/tip */
    border-left: 5px solid #28a745; /* Green */
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit__checklist-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-beginner-guide-first-deposit__faq .page-beginner-guide-first-deposit__accordion {
    margin-top: 30px;
}

.page-beginner-guide-first-deposit__accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-beginner-guide-first-deposit__accordion-header {
    background-color: #007BFF;
    color: #ffffff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-beginner-guide-first-deposit__accordion-header:hover {
    background-color: #0056b3;
}

.page-beginner-guide-first-deposit__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-beginner-guide-first-deposit__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-beginner-guide-first-deposit__accordion-content.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
}

.page-beginner-guide-first-deposit__accordion-content p {
    color: #555;
    font-size: 1em;
    margin-bottom: 0;
}

.page-beginner-guide-first-deposit__cta {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
    margin-bottom: 0;
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__section-title {
    color: #FFD700; /* Gold for contrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__section-title::after {
    background-color: #ffffff;
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__subtitle {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__text-small {
    margin-top: 25px;
    font-size: 0.9em;
    color: #bbbbbb;
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__text-small .page-beginner-guide-first-deposit__inline-link {
    color: #FFD700;
}

.page-beginner-guide-first-deposit__cta .page-beginner-guide-first-deposit__text-small .page-beginner-guide-first-deposit__inline-link:hover {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-first-deposit__title {
        font-size: 2.5em;
    }

    .page-beginner-guide-first-deposit__section-title {
        font-size: 2em;
    }

    .page-beginner-guide-first-deposit__grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-first-deposit__checklist {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-first-deposit__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-beginner-guide-first-deposit__accordion-content.active {
        padding: 10px 20px 20px;
    }

    .page-beginner-guide-first-deposit__hero,
    .page-beginner-guide-first-deposit__section,
    .page-beginner-guide-first-deposit__cta {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit__title {
        font-size: 2em;
    }

    .page-beginner-guide-first-deposit__subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-first-deposit__section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-first-deposit__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-first-deposit__feature-card,
    .page-beginner-guide-first-deposit__step {
        padding: 20px;
    }

    .page-beginner-guide-first-deposit__step h3 {
        font-size: 1.5em;
    }
}