/* style/register-login-registration-tutorial.css */

.page-register-login-registration-tutorial {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-register-login-registration-tutorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-register-login-registration-tutorial__hero-section {
    background: linear-gradient(135deg, #0A2463, #3E60A3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-register-login-registration-tutorial__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-register-login-registration-tutorial__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-register-login-registration-tutorial__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-register-login-registration-tutorial__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-register-login-registration-tutorial__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-register-login-registration-tutorial__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-register-login-registration-tutorial__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-register-login-registration-tutorial__btn--link {
    background-color: transparent;
    color: #0A2463;
    border: none;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
}

.page-register-login-registration-tutorial__btn--link:hover {
    color: #FFD700;
    text-decoration: none;
}

.page-register-login-registration-tutorial__section {
    padding: 60px 0;
}

.page-register-login-registration-tutorial__section--alt-bg {
    background-color: #e9ecef;
}

.page-register-login-registration-tutorial__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-register-login-registration-tutorial__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-login-registration-tutorial__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    color: #555;
}

.page-register-login-registration-tutorial__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-register-login-registration-tutorial__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-register-login-registration-tutorial__text-content {
    flex: 1;
    padding-right: 20px;
}

.page-register-login-registration-tutorial__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-register-login-registration-tutorial__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login-registration-tutorial__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-register-login-registration-tutorial__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-registration-tutorial__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-register-login-registration-tutorial__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-register-login-registration-tutorial__feature-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-register-login-registration-tutorial__step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.page-register-login-registration-tutorial__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700;
    background-color: #0A2463;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-tutorial__step-content {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-register-login-registration-tutorial__step-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register-login-registration-tutorial__highlight-text {
    color: #0A2463;
    font-weight: bold;
}

.page-register-login-registration-tutorial__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__list--ordered {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__list li {
    margin-bottom: 8px;
}

.page-register-login-registration-tutorial__tips {
    background-color: #f0f8ff;
    border-left: 5px solid #0A2463;
    padding: 25px;
    margin-top: 50px;
    border-radius: 5px;
}

.page-register-login-registration-tutorial__tips-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__sub-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-register-login-registration-tutorial__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-register-login-registration-tutorial__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-registration-tutorial__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-register-login-registration-tutorial__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-register-login-registration-tutorial__promo-title {
    font-size: 1.3em;
    color: #0A2463;
    margin: 20px 15px 10px;
}

.page-register-login-registration-tutorial__promo-card p {
    padding: 0 15px 20px;
    color: #555;
}

.page-register-login-registration-tutorial__promo-card .page-register-login-registration-tutorial__btn--link {
    margin-bottom: 20px;
    display: inline-block;
}

.page-register-login-registration-tutorial__cta-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #555;
}

.page-register-login-registration-tutorial__cta-link {
    color: #0A2463;
    font-weight: bold;
    text-decoration: underline;
}

.page-register-login-registration-tutorial__cta-link:hover {
    color: #FFD700;
}

.page-register-login-registration-tutorial__faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-register-login-registration-tutorial__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register-login-registration-tutorial__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-register-login-registration-tutorial__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-register-login-registration-tutorial__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-login-registration-tutorial__faq-answer {
    color: #555;
    display: none;
    margin-top: 10px;
}

.page-register-login-registration-tutorial__faq-answer.active {
    display: block;
}

.page-register-login-registration-tutorial__cta-section {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-register-login-registration-tutorial__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-register-login-registration-tutorial__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register-login-registration-tutorial__cta-buttons .page-register-login-registration-tutorial__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-registration-tutorial__hero-title {
        font-size: 2.5em;
    }
    .page-register-login-registration-tutorial__section-title {
        font-size: 2em;
    }
    .page-register-login-registration-tutorial__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-register-login-registration-tutorial__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-register-login-registration-tutorial__text-content {
        padding-right: 0;
    }
    .page-register-login-registration-tutorial__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-register-login-registration-tutorial__step-number {
        margin-bottom: 20px;
    }
    .page-register-login-registration-tutorial__cta-title {
        font-size: 2.2em;
    }
    .page-register-login-registration-tutorial__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-register-login-registration-tutorial__cta-buttons .page-register-login-registration-tutorial__btn {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-register-login-registration-tutorial__hero-title {
        font-size: 2em;
    }
    .page-register-login-registration-tutorial__hero-description {
        font-size: 1em;
    }
    .page-register-login-registration-tutorial__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-registration-tutorial__section-title {
        font-size: 1.8em;
    }
    .page-register-login-registration-tutorial__features-grid, .page-register-login-registration-tutorial__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-register-login-registration-tutorial__step-title {
        font-size: 1.5em;
    }
    .page-register-login-registration-tutorial__faq-question {
        font-size: 1.2em;
    }
    .page-register-login-registration-tutorial__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-register-login-registration-tutorial__hero-section {
        padding: 60px 0;
    }
    .page-register-login-registration-tutorial__hero-title {
        font-size: 1.8em;
    }
    .page-register-login-registration-tutorial__hero-description {
        font-size: 0.9em;
    }
    .page-register-login-registration-tutorial__btn {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-register-login-registration-tutorial__btn--secondary {
        margin-left: 0;
    }
    .page-register-login-registration-tutorial__section {
        padding: 40px 0;
    }
    .page-register-login-registration-tutorial__section-title {
        font-size: 1.5em;
    }
    .page-register-login-registration-tutorial__intro-text {
        font-size: 0.9em;
    }
    .page-register-login-registration-tutorial__step-number {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
    .page-register-login-registration-tutorial__step-content {
        padding: 20px;
    }
    .page-register-login-registration-tutorial__step-title {
        font-size: 1.3em;
    }
    .page-register-login-registration-tutorial__tips-title {
        font-size: 1.3em;
    }
    .page-register-login-registration-tutorial__promo-title {
        font-size: 1.1em;
    }
    .page-register-login-registration-tutorial__faq-question {
        font-size: 1.1em;
    }
    .page-register-login-registration-tutorial__cta-title {
        font-size: 1.6em;
    }
    .page-register-login-registration-tutorial__cta-description {
        font-size: 1em;
    }
}