/* style/resources-b66-registration-login-guide.css */

:root {
    --page-b66-primary-color: #0A2463;
    --page-b66-secondary-color: #FFD700;
    --page-b66-text-color-dark: #333;
    --page-b66-text-color-light: #fff;
    --page-b66-background-light: #f4f7f6;
    --page-b66-border-color: #e0e0e0;
}

.page-resources-b66-registration-login-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-b66-text-color-dark);
    background-color: var(--page-b66-background-light);
}

.page-resources-b66-registration-login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-b66-registration-login-guide__hero-section {
    background: linear-gradient(135deg, var(--page-b66-primary-color) 0%, #1A3B8A 100%); /* Darker shade of primary */
    color: var(--page-b66-text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-b66-registration-login-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,darkblue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-b66-registration-login-guide__hero-section > .page-resources-b66-registration-login-guide__container {
    position: relative;
    z-index: 1;
}

.page-resources-b66-registration-login-guide__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-b66-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-b66-registration-login-guide__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-b66-registration-login-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-b66-registration-login-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-b66-registration-login-guide__button--primary {
    background-color: var(--page-b66-secondary-color);
    color: var(--page-b66-primary-color);
    border: 2px solid var(--page-b66-secondary-color);
}

.page-resources-b66-registration-login-guide__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-b66-registration-login-guide__button--secondary {
    background-color: transparent;
    color: var(--page-b66-secondary-color);
    border: 2px solid var(--page-b66-secondary-color);
}

.page-resources-b66-registration-login-guide__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-resources-b66-registration-login-guide__article-content {
    padding: 60px 0;
    display: flex;
    gap: 40px;
}

.page-resources-b66-registration-login-guide__table-of-contents {
    flex: 0 0 280px;
    padding: 20px;
    background-color: var(--page-b66-text-color-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px; /* Adjust as needed for sticky effect */
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.page-resources-b66-registration-login-guide__toc-title {
    font-size: 1.5em;
    color: var(--page-b66-primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--page-b66-secondary-color);
    padding-bottom: 10px;
}

.page-resources-b66-registration-login-guide__table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-b66-registration-login-guide__table-of-contents li {
    margin-bottom: 10px;
}

.page-resources-b66-registration-login-guide__table-of-contents a {
    text-decoration: none;
    color: var(--page-b66-text-color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.page-resources-b66-registration-login-guide__table-of-contents a:hover,
.page-resources-b66-registration-login-guide__table-of-contents a.active {
    color: var(--page-b66-primary-color);
    font-weight: bold;
}

.page-resources-b66-registration-login-guide__main-article {
    flex: 1;
    max-width: 800px;
    background-color: var(--page-b66-text-color-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-b66-registration-login-guide__section {
    margin-bottom: 40px;
}

.page-resources-b66-registration-login-guide__section-title {
    font-size: 2em;
    color: var(--page-b66-primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--page-b66-secondary-color);
}

.page-resources-b66-registration-login-guide__sub-section-title {
    font-size: 1.5em;
    color: var(--page-b66-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-b66-registration-login-guide__main-article p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-resources-b66-registration-login-guide__main-article ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

.page-resources-b66-registration-login-guide__main-article li {
    margin-bottom: 0.5em;
}

.page-resources-b66-registration-login-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-b66-registration-login-guide__cta-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-resources-b66-registration-login-guide__cta-buttons--bottom {
    margin-top: 50px;
    border-top: 1px solid var(--page-b66-border-color);
    padding-top: 30px;
}

.page-resources-b66-registration-login-guide__back-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-resources-b66-registration-login-guide__back-link a {
    color: var(--page-b66-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-b66-registration-login-guide__back-link a:hover {
    color: var(--page-b66-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-b66-registration-login-guide__article-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-resources-b66-registration-login-guide__table-of-contents {
        position: static;
        width: 100%;
        max-height: none;
        overflow-y: visible;
    }

    .page-resources-b66-registration-login-guide__main-article {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-b66-registration-login-guide__main-title {
        font-size: 2em;
    }

    .page-resources-b66-registration-login-guide__subtitle {
        font-size: 1em;
    }

    .page-resources-b66-registration-login-guide__hero-section {
        padding: 60px 0;
    }

    .page-resources-b66-registration-login-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-b66-registration-login-guide__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 80%;
        max-width: 300px;
    }

    .page-resources-b66-registration-login-guide__article-content {
        padding: 40px 0;
    }

    .page-resources-b66-registration-login-guide__main-article {
        padding: 20px;
    }

    .page-resources-b66-registration-login-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-b66-registration-login-guide__sub-section-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-resources-b66-registration-login-guide__main-title {
        font-size: 1.8em;
    }

    .page-resources-b66-registration-login-guide__subtitle {
        font-size: 0.9em;
    }

    .page-resources-b66-registration-login-guide__button {
        width: 90%;
    }

    .page-resources-b66-registration-login-guide__table-of-contents,
    .page-resources-b66-registration-login-guide__main-article {
        padding: 15px;
    }

    .page-resources-b66-registration-login-guide__section-title {
        font-size: 1.5em;
    }
}