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

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

.page-s666-beginner-guide__hero-section {
    background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted for better contrast with gold */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-s666-beginner-guide__hero-actions .page-s666-beginner-guide__btn {
    margin: 0 10px;
    min-width: 200px;
}

.page-s666-beginner-guide__section-title {
    font-size: 2.5em;
    color: #0047AB;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-s666-beginner-guide__sub-section-title {
    font-size: 1.8em;
    color: #0047AB;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-s666-beginner-guide__about-s666, .page-s666-beginner-guide__getting-started, .page-s666-beginner-guide__why-s666, .page-s666-beginner-guide__detail-pages, .page-s666-beginner-guide__cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-s666-beginner-guide__about-s666 {
    background-color: #f0f5fa; /* Light blue background for this section */
}

.page-s666-beginner-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.page-s666-beginner-guide__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-s666-beginner-guide__text-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-s666-beginner-guide__text-content ul li {
    margin-bottom: 8px;
    color: #444;
}

.page-s666-beginner-guide__image-wrapper {
    text-align: center;
}

.page-s666-beginner-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.page-s666-beginner-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-s666-beginner-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Dark blue */
}

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

.page-s666-beginner-guide__btn--secondary {
    background-color: #0047AB; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-s666-beginner-guide__btn--secondary:hover {
    background-color: #003a8a;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-s666-beginner-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-s666-beginner-guide__btn--full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.page-s666-beginner-guide__step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-s666-beginner-guide__step-card {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.page-s666-beginner-guide__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-s666-beginner-guide__step-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-s666-beginner-guide__step-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-s666-beginner-guide__step-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-s666-beginner-guide__step-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-s666-beginner-guide__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    color: #333;
}

.page-s666-beginner-guide__inline-link {
    color: #0047AB;
    font-weight: bold;
    text-decoration: none;
}

.page-s666-beginner-guide__inline-link:hover {
    text-decoration: underline;
    color: #002a5c;
}

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

.page-s666-beginner-guide__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0047AB;
}

.page-s666-beginner-guide__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-s666-beginner-guide__feature-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-s666-beginner-guide__feature-description {
    font-size: 1em;
    color: #666;
}

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

.page-s666-beginner-guide__detail-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FFD700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-s666-beginner-guide__detail-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-s666-beginner-guide__detail-title a {
    color: #0047AB;
    text-decoration: none;
}

.page-s666-beginner-guide__detail-title a:hover {
    text-decoration: underline;
    color: #002a5c;
}

.page-s666-beginner-guide__detail-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-s666-beginner-guide__cta-section {
    background-color: #0047AB;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

.page-s666-beginner-guide__cta-section .page-s666-beginner-guide__section-title {
    color: #FFD700;
}

.page-s666-beginner-guide__cta-section .page-s666-beginner-guide__section-description {
    color: #f0f0f0;
}

.page-s666-beginner-guide__cta-actions {
    margin-top: 50px;
}

.page-s666-beginner-guide__cta-actions .page-s666-beginner-guide__btn {
    margin: 0 15px;
    min-width: 220px;
}

.page-s666-beginner-guide__cta-actions .page-s666-beginner-guide__btn--primary {
    background-color: #FFD700;
    color: #0047AB;
}

.page-s666-beginner-guide__cta-actions .page-s666-beginner-guide__btn--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-s666-beginner-guide__cta-actions .page-s666-beginner-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #0047AB;
}

.page-s666-beginner-guide .highlight-text {
    color: #0047AB;
    font-weight: bold;
}

.page-s666-beginner-guide__hero-section .highlight-text {
    color: #FFD700;
}

.page-s666-beginner-guide__cta-section .highlight-text {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-s666-beginner-guide__hero-title {
        font-size: 2.8em;
    }

    .page-s666-beginner-guide__hero-subtitle {
        font-size: 1.3em;
    }

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

    .page-s666-beginner-guide__content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-s666-beginner-guide__image-wrapper {
        order: -1; /* Image comes first on mobile */
    }

    .page-s666-beginner-guide__hero-actions, .page-s666-beginner-guide__cta-actions {
        flex-direction: column;
        display: flex;
        gap: 15px;
    }

    .page-s666-beginner-guide__hero-actions .page-s666-beginner-guide__btn, .page-s666-beginner-guide__cta-actions .page-s666-beginner-guide__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-s666-beginner-guide__hero-section, .page-s666-beginner-guide__cta-section {
        padding: 60px 0;
    }

    .page-s666-beginner-guide__hero-title {
        font-size: 2.2em;
    }

    .page-s666-beginner-guide__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-s666-beginner-guide__about-s666, .page-s666-beginner-guide__getting-started, .page-s666-beginner-guide__why-s666, .page-s666-beginner-guide__detail-pages, .page-s666-beginner-guide__cta-section {
        padding: 60px 0;
    }

    .page-s666-beginner-guide__step-cards, .page-s666-beginner-guide__feature-grid, .page-s666-beginner-guide__detail-list {
        grid-template-columns: 1fr;
    }

    .page-s666-beginner-guide__step-card, .page-s666-beginner-guide__feature-item, .page-s666-beginner-guide__detail-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-s666-beginner-guide__hero-title {
        font-size: 1.8em;
    }

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

    .page-s666-beginner-guide__section-title {
        font-size: 1.5em;
    }

    .page-s666-beginner-guide__step-title, .page-s666-beginner-guide__feature-title, .page-s666-beginner-guide__detail-title {
        font-size: 1.3em;
    }

    .page-s666-beginner-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}