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

.page-index-beginner-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-beginner-guide__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-beginner-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Highlight with accent color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-beginner-guide__cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-index-beginner-guide__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index-beginner-guide__cta-button--large {
    font-size: 1.5em;
    padding: 20px 40px;
}

.page-index-beginner-guide__cta-button--secondary {
    background-color: #007BFF;
    color: #fff;
    margin-left: 20px;
}

.page-index-beginner-guide__cta-button--secondary:hover {
    background-color: #0056b3;
}

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

.page-index-beginner-guide__section:nth-of-type(even) {
    background-color: #f0f8ff;
}

.page-index-beginner-guide__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-beginner-guide__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-index-beginner-guide__sub-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-beginner-guide__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-index-beginner-guide__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-beginner-guide__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-index-beginner-guide__content-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-beginner-guide__text-content {
    flex: 1;
}

.page-index-beginner-guide__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-index-beginner-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-beginner-guide__steps {
    background-color: #f0f8ff;
}

.page-index-beginner-guide__step-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-beginner-guide__step-card:hover {
    transform: translateY(-5px);
}

.page-index-beginner-guide__step-icon-wrapper {
    margin-bottom: 20px;
}

.page-index-beginner-guide__step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-index-beginner-guide__step-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-index-beginner-guide__step-card p {
    font-size: 1.05em;
    margin-bottom: 20px;
}

.page-index-beginner-guide__step-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-beginner-guide__step-button:hover {
    background-color: #e0a800;
}

.page-index-beginner-guide__step-image {
    margin-top: 20px;
    max-width: 80%;
}

.page-index-beginner-guide__promotions {
    background-color: #fff;
}

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

.page-index-beginner-guide__promo-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-beginner-guide__promo-card:hover {
    transform: translateY(-5px);
}

.page-index-beginner-guide__promo-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-beginner-guide__promo-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-index-beginner-guide__promo-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-index-beginner-guide__promo-button {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-beginner-guide__promo-button:hover {
    background-color: #0056b3;
}

.page-index-beginner-guide__disclaimer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: 30px;
}

.page-index-beginner-guide__faq {
    background-color: #f0f8ff;
}

.page-index-beginner-guide__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-beginner-guide__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-beginner-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-beginner-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-beginner-guide__faq-answer {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    display: none; /* Hidden by default */
}

.page-index-beginner-guide__faq-answer.active {
    display: block;
}

.page-index-beginner-guide__faq-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-index-beginner-guide__faq-button:hover {
    background-color: #e0a800;
}

.page-index-beginner-guide__responsible-gambling {
    background-color: #fff;
}

.page-index-beginner-guide__final-cta {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-beginner-guide__final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-beginner-guide__final-cta .page-index-beginner-guide__section-title {
    color: #FFC107;
}

.page-index-beginner-guide__final-cta .page-index-beginner-guide__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-beginner-guide__hero-title {
        font-size: 2.8em;
    }
    .page-index-beginner-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-beginner-guide__section-title {
        font-size: 2em;
    }
    .page-index-beginner-guide__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-index-beginner-guide__content-block:nth-child(even) {
        flex-direction: column;
    }
    .page-index-beginner-guide__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-beginner-guide__hero-title {
        font-size: 2.2em;
    }
    .page-index-beginner-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-beginner-guide__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-beginner-guide__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-index-beginner-guide__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-index-beginner-guide__section-title {
        font-size: 1.8em;
    }
    .page-index-beginner-guide__promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-beginner-guide__hero-title {
        font-size: 1.8em;
    }
    .page-index-beginner-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-index-beginner-guide__section-title {
        font-size: 1.5em;
    }
    .page-index-beginner-guide__step-title {
        font-size: 1.5em;
    }
    .page-index-beginner-guide__list {
        padding-left: 15px;
    }
    .page-index-beginner-guide__faq-question {
        font-size: 1.1em;
    }
    .page-index-beginner-guide__faq-answer {
        font-size: 0.95em;
    }
    .page-index-beginner-guide__promo-image {
        height: 150px;
    }
}