/* style/s666-beginner-guide-faq.css */

.page-s666-beginner-guide-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark text on light background for readability */
    background-color: #f8f9fa; /* Light background */
}

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

/* Hero Section */
.page-s666-beginner-guide-faq__hero {
    background: linear-gradient(135deg, #0047AB, #003380); /* Deep blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-s666-beginner-guide-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-s666-beginner-guide-faq__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0; /* Light grey for subtitle */
}

.page-s666-beginner-guide-faq__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-s666-beginner-guide-faq__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-s666-beginner-guide-faq__section:last-of-type {
    border-bottom: none;
}

.page-s666-beginner-guide-faq__section-title {
    font-size: 2.5em;
    color: #0047AB; /* Deep blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-s666-beginner-guide-faq__sub-section-title {
    font-size: 1.8em;
    color: #003380; /* Slightly darker blue for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-s666-beginner-guide-faq__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-s666-beginner-guide-faq__image {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.page-s666-beginner-guide-faq__image:hover {
    transform: translateY(-5px);
}

.page-s666-beginner-guide-faq__list,
.page-s666-beginner-guide-faq__numbered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-s666-beginner-guide-faq__list li,
.page-s666-beginner-guide-faq__numbered-list li {
    background-color: #e6f0ff; /* Light blue background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-s666-beginner-guide-faq__list li::before {
    content: '✓';
    color: #0047AB; /* Deep blue checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-s666-beginner-guide-faq__numbered-list li {
    counter-increment: faq-counter;
}

.page-s666-beginner-guide-faq__numbered-list li::before {
    content: counter(faq-counter) ".";
    color: #FFD700; /* Gold number */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    background-color: #0047AB;
    padding: 2px 8px;
    border-radius: 50%;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.page-s666-beginner-guide-faq p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

/* Buttons */
.page-s666-beginner-guide-faq__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

.page-s666-beginner-guide-faq__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0047AB; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-s666-beginner-guide-faq__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #003380;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.page-s666-beginner-guide-faq__btn--secondary {
    background-color: #0047AB; /* Deep blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #0047AB;
}

.page-s666-beginner-guide-faq__btn--secondary:hover {
    background-color: #003380; /* Darker blue */
    color: #ffe033;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.4);
}

/* Conclusion Section */
.page-s666-beginner-guide-faq__conclusion {
    background-color: #e6f0ff; /* Light blue background */
    text-align: center;
    padding: 80px 0;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1000px;
}

.page-s666-beginner-guide-faq__conclusion .page-s666-beginner-guide-faq__section-title {
    color: #0047AB;
    margin-bottom: 20px;
}

.page-s666-beginner-guide-faq__conclusion p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-s666-beginner-guide-faq__hero-title {
        font-size: 2.5em;
    }

    .page-s666-beginner-guide-faq__hero-subtitle {
        font-size: 1em;
    }

    .page-s666-beginner-guide-faq__section-title {
        font-size: 2em;
    }

    .page-s666-beginner-guide-faq__sub-section-title {
        font-size: 1.5em;
    }

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

    .page-s666-beginner-guide-faq__list li,
    .page-s666-beginner-guide-faq__numbered-list li {
        padding: 10px 15px;
    }

    .page-s666-beginner-guide-faq__image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-s666-beginner-guide-faq__hero {
        padding: 60px 0;
    }

    .page-s666-beginner-guide-faq__hero-title {
        font-size: 2em;
    }

    .page-s666-beginner-guide-faq__section {
        padding: 40px 0;
    }

    .page-s666-beginner-guide-faq__section-title {
        font-size: 1.8em;
    }

    .page-s666-beginner-guide-faq__sub-section-title {
        font-size: 1.3em;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .page-s666-beginner-guide-faq__btn {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}