/* style/registration-guide-step-by-step.css */
.page-registration-guide-step-by-step {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text for dark background */
    background-color: #1A2E44; /* Main dark blue background */
}

.page-registration-guide-step-by-step__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-registration-guide-step-by-step__hero-section {
    background: linear-gradient(135deg, #1A2E44 0%, #30475E 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-step-by-step__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
}

.page-registration-guide-step-by-step__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-registration-guide-step-by-step__btn--primary {
    background-color: #FFD700; /* Gold accent */
    color: #1A2E44; /* Dark blue text for contrast */
}

.page-registration-guide-step-by-step__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-registration-guide-step-by-step__btn--secondary {
    background-color: #5f6d7c; /* Lighter variant of main color */
    color: #FFFFFF;
    border: 1px solid #76828f;
}

.page-registration-guide-step-by-step__btn--secondary:hover {
    background-color: #76828f;
    border-color: #909aa5;
    transform: translateY(-2px);
}

.page-registration-guide-step-by-step__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-registration-guide-step-by-step__btn--link {
    background: none;
    color: #FFD700;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-registration-guide-step-by-step__btn--link:hover {
    color: #E6C200;
}

.page-registration-guide-step-by-step__content-section,
.page-registration-guide-step-by-step__guide-section,
.page-registration-guide-step-by-step__tips-section,
.page-registration-guide-step-by-step__faq-section,
.page-registration-guide-step-by-step__cta-section {
    padding: 60px 0;
    background-color: #1A2E44; /* Consistent dark background */
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-registration-guide-step-by-step__text-block {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__text-block a {
    color: #FFD700;
    text-decoration: none;
}

.page-registration-guide-step-by-step__text-block a:hover {
    text-decoration: underline;
}

.page-registration-guide-step-by-step__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-step-by-step__feature-item {
    background-color: #2a415a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__feature-item:hover {
    transform: translateY(-5px);
}

.page-registration-guide-step-by-step__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Make icons gold-ish */
}

.page-registration-guide-step-by-step__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-registration-guide-step-by-step__feature-item p {
    color: #D0D0D0;
    font-size: 0.95em;
}

.page-registration-guide-step-by-step__step-list {
    margin-top: 50px;
}

.page-registration-guide-step-by-step__step-item {
    background-color: #2a415a;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.page-registration-guide-step-by-step__step-number {
    background-color: #FFD700;
    color: #1A2E44;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-registration-guide-step-by-by__step-title {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: 600;
    line-height: 1.3;
}

.page-registration-guide-step-by-step__step-item p {
    color: #D0D0D0;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-registration-guide-step-by-step__info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-registration-guide-step-by-step__info-list li {
    background-color: #3b536b;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1em;
    border-left: 4px solid #FFD700;
}

.page-registration-guide-step-by-step__info-list li strong {
    color: #FFD700;
}

.page-registration-guide-step-by-step__step-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-registration-guide-step-by-step__checklist {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-registration-guide-step-by-step__checklist li {
    background-color: #2a415a;
    padding: 15px 25px;
    margin-bottom: 12px;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1.05em;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-step-by-step__checklist li strong {
    color: #FFD700;
}

.page-registration-guide-step-by-step__faq-item {
    background-color: #2a415a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-registration-guide-step-by-step__faq-answer {
    font-size: 1.05em;
    color: #D0D0D0;
    line-height: 1.7;
}

.page-registration-guide-step-by-step__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #1A2E44;
}

.page-registration-guide-step-by-step__cta-section .page-registration-guide-step-by-step__section-title {
    color: #FFD700;
}

.page-registration-guide-step-by-step__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-registration-guide-step-by-step__link:hover {
    text-decoration: underline;
}

.page-registration-guide-step-by-step__floating-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-registration-guide-step-by-step__floating-btn {
    background-color: #FFD700;
    color: #1A2E44;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.page-registration-guide-step-by-step__floating-btn:hover {
    background-color: #E6C200;
    transform: translateX(-5px);
}

.page-registration-guide-step-by-step__floating-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(10%) sepia(100%) saturate(2000%) hue-rotate(210deg) brightness(50%) contrast(100%); /* Make icons dark blue */
}

.page-registration-guide-step-by-step .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-registration-guide-step-by-step__hero-title {
        font-size: 2.5em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 2em;
    }
    .page-registration-guide-step-by-step__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-registration-guide-step-by-step__hero-section {
        padding: 80px 0;
    }
    .page-registration-guide-step-by-step__hero-title {
        font-size: 2em;
    }
    .page-registration-guide-step-by-step__hero-subtitle {
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__text-block {
        font-size: 0.95em;
    }
    .page-registration-guide-step-by-step__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__step-title {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__floating-menu {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        justify-content: space-around;
        background-color: #1A2E44; /* Dark background for floating menu on mobile */
        padding: 10px 0;
        border-radius: 10px;
    }
    .page-registration-guide-step-by-step__floating-btn {
        padding: 8px 10px;
        font-size: 0.9em;
        flex-direction: column;
        gap: 5px;
        box-shadow: none;
        background-color: transparent; /* Transparent button background on mobile */
        color: #FFD700;
    }
    .page-registration-guide-step-by-step__floating-btn:hover {
        transform: none;
        background-color: rgba(255, 215, 0, 0.1); /* Light hover effect */
    }
    .page-registration-guide-step-by-step__floating-icon {
        margin-right: 0;
        filter: none; /* Revert filter for mobile floating icons */
    }
}

@media (max-width: 480px) {
    .page-registration-guide-step-by-step__hero-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__btn--primary,
    .page-registration-guide-step-by-step__btn--secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__step-header {
        flex-direction: column;
        text-align: center;
    }
    .page-registration-guide-step-by-step__step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-registration-guide-step-by-step__step-title {
        font-size: 1.3em;
    }
    .page-registration-guide-step-by-step__floating-btn span {
        display: none;
    }
    .page-registration-guide-step-by-step__floating-btn {
        padding: 8px;
    }
    .page-registration-guide-step-by-step__floating-icon {
        width: 28px;
        height: 28px;
    }
}