/* style/beginner-guide-faq.css */
.page-beginner-guide-faq {
    font-family: Arial, sans-serif;
    color: #e5dfd3; /* Light text for dark backgrounds */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-beginner-guide-faq__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3e4d6a 100%); /* Darker gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-beginner-guide-faq__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-beginner-guide-faq__hero-subtitle {
    font-size: 1.4em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-faq__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-faq__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-faq__section {
    padding: 60px 0;
    background-color: #2a3342;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__section:nth-of-type(even) {
    background-color: #1A202C;
}

.page-beginner-guide-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-beginner-guide-faq__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-faq__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-beginner-guide-faq__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-beginner-guide-faq__introduction .page-beginner-guide-faq__image-wrapper {
        order: 2;
    }
    .page-beginner-guide-faq__introduction .page-beginner-guide-faq__text-content {
        order: 1;
    }
}

.page-beginner-guide-faq__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-beginner-guide-faq__link-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

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

.page-beginner-guide-faq__image-wrapper {
    text-align: center;
}

.page-beginner-guide-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-beginner-guide-faq__image:hover {
    transform: scale(1.02);
}

.page-beginner-guide-faq__image--small {
    max-width: 70%;
    margin: 20px auto;
    display: block;
}

.page-beginner-guide-faq__faq-list {
    background-color: #1A202C;
}

.page-beginner-guide-faq__faq-item {
    background-color: #2a3342;
    border: 1px solid #3c4a5c;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-faq__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__question {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-beginner-guide-faq__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-beginner-guide-faq__question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-faq__answer {
    font-size: 1.1em;
    color: #cccccc;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #3c4a5c;
    margin-top: 15px;
}

.page-beginner-guide-faq__answer.active {
    display: block;
}

.page-beginner-guide-faq__answer p {
    margin-bottom: 15px;
}

.page-beginner-guide-faq__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 15px;
    color: #cccccc;
}

.page-beginner-guide-faq__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-beginner-guide-faq__list strong {
    color: #FFD700;
}

.page-beginner-guide-faq__cta-section {
    background-color: #3e4d6a;
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-beginner-guide-faq__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__cta-text {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.text-highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-beginner-guide-faq__hero-title {
        font-size: 3em;
    }
    .page-beginner-guide-faq__hero-subtitle,
    .page-beginner-guide-faq__cta-text {
        font-size: 1.2em;
    }
    .page-beginner-guide-faq__section-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-faq__question {
        font-size: 1.4em;
    }
    .page-beginner-guide-faq__answer p,
    .page-beginner-guide-faq__list li {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-faq__hero {
        padding: 60px 0;
    }
    .page-beginner-guide-faq__hero-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-faq__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-faq__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-beginner-guide-faq__section {
        padding: 40px 0;
    }
    .page-beginner-guide-faq__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-faq__content-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-faq__faq-item {
        padding: 20px;
    }
    .page-beginner-guide-faq__question {
        font-size: 1.3em;
    }
    .page-beginner-guide-faq__answer p,
    .page-beginner-guide-faq__list li {
        font-size: 0.95em;
    }
    .page-beginner-guide-faq__cta-section {
        padding: 60px 0;
    }
    .page-beginner-guide-faq__cta-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-faq__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-faq__hero-title {
        font-size: 2em;
    }
    .page-beginner-guide-faq__hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-faq__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-faq__question {
        font-size: 1.2em;
    }
    .page-beginner-guide-faq__cta-title {
        font-size: 2em;
    }
    .page-beginner-guide-faq__cta-text {
        font-size: 1em;
    }
    .page-beginner-guide-faq__image--small {
        max-width: 90%;
    }
}