/* style/registration-download.css */
.page-registration-download {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-registration-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-download__hero-section {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-download__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-registration-download__pulse 15s infinite ease-out;
    opacity: 0.5;
}

@keyframes page-registration-download__pulse {
    0% { transform: scale(0.5); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(0.5); opacity: 0.2; }
}

.page-registration-download__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; /* Ensure high contrast */
}

.page-registration-download__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Ensure high contrast */
}

.page-registration-download__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-registration-download__btn {
    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.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-download__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-registration-download__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-registration-download__btn--secondary {
    background-color: transparent;
    color: #fff; /* Light text for contrast */
    border: 2px solid #fff;
}

.page-registration-download__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.page-registration-download__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-registration-download__section:nth-child(even) {
    background-color: #f0f0f0;
}

.page-registration-download__section-title {
    font-size: 2.2em;
    color: #007bff; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-download__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color */
    border-radius: 2px;
}

.page-registration-download__sub-section-title {
    font-size: 1.8em;
    color: #007bff; /* Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-registration-download__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444; /* Darker text for readability */
}

.page-registration-download__highlight {
    color: #007bff;
    font-weight: bold;
}

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

.page-registration-download__feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fefefe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-registration-download__feature-item:hover {
    transform: translateY(-5px);
}

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

.page-registration-download__feature-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-registration-download__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.page-registration-download__step-number {
    background-color: #ffc107;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-registration-download__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-registration-download__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-registration-download__center-cta {
    text-align: center;
    margin-top: 40px;
}

.page-registration-download__cta-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.15em;
    font-weight: bold;
    color: #007bff;
}

.page-registration-download__download-guide-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-registration-download__download-guide-item--reverse {
    flex-direction: row-reverse;
}

.page-registration-download__download-content {
    flex: 1;
    min-width: 300px;
}

.page-registration-download__download-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-registration-download__download-content ol li {
    margin-bottom: 10px;
}

.page-registration-download__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-registration-download__qr-code {
    width: 150px;
    height: 150px;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.page-registration-download__app-screenshot {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-registration-download__btn--ios {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-registration-download__btn--ios:hover {
    background-color: #0056b3;
}

.page-registration-download__btn--android {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.page-registration-download__btn--android:hover {
    background-color: #218838;
}

.page-registration-download__note {
    font-style: italic;
    color: #555;
    text-align: center;
    margin-top: 30px;
}

.page-registration-download__login-steps {
    list-style: none;
    padding: 0;
    counter-reset: login-step;
    margin-bottom: 30px;
}

.page-registration-download__login-steps li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-registration-download__login-steps li::before {
    counter-increment: login-step;
    content: counter(login-step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.page-registration-download__login-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-download__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-registration-download__benefit-list li {
    background-color: #fefefe;
    padding: 20px;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
    color: #444;
    transition: border-color 0.3s ease;
}

.page-registration-download__benefit-list li:hover {
    border-left-color: #007bff;
}

.page-registration-download__benefit-list li strong {
    color: #007bff;
    font-size: 1.1em;
}

.page-registration-download__feature-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-registration-download__faq-list {
    margin-top: 30px;
}

.page-registration-download__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-registration-download__faq-question {
    padding: 18px 25px;
    background-color: #007bff;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-registration-download__faq-question:hover {
    background-color: #0056b3;
}

.page-registration-download__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-registration-download__faq-item.active .page-registration-download__faq-question::after {
    transform: rotate(45deg);
}

.page-registration-download__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
    color: #444;
}

.page-registration-download__faq-item.active .page-registration-download__faq-answer {
    max-height: 200px; /* Adjust based on max content height */
    padding: 15px 25px;
}

.page-registration-download__faq-answer p {
    margin-bottom: 0;
}

.page-registration-download__related-articles {
    background-color: #e9ecef;
    padding: 80px 0;
}

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

.page-registration-download__article-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-registration-download__article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-registration-download__article-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-registration-download__article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-registration-download__article-title a:hover {
    color: #ffc107;
}

.page-registration-download__article-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-registration-download__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #ffc107;
    color: #333;
    border: 1px solid #ffc107;
}

.page-registration-download__btn--small:hover {
    background-color: #e0a800;
    color: #333;
}

.page-registration-download__final-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
}

.page-registration-download__final-cta .page-registration-download__section-title {
    color: #fff;
}

.page-registration-download__final-cta .page-registration-download__section-title::after {
    background-color: #ffc107;
}

.page-registration-download__final-cta .page-registration-download__text-block {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-download__center-text {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-download__hero-title {
        font-size: 2.2em;
    }
    .page-registration-download__section-title {
        font-size: 1.8em;
    }
    .page-registration-download__sub-section-title {
        font-size: 1.5em;
    }
    .page-registration-download__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-registration-download__download-guide-item {
        flex-direction: column;
        text-align: center;
    }
    .page-registration-download__download-guide-item--reverse {
        flex-direction: column;
    }
    .page-registration-download__download-content ol {
        text-align: left;
    }
    .page-registration-download__download-image-wrapper {
        margin-top: 30px;
    }
    .page-registration-download__qr-code {
        width: 120px;
        height: 120px;
    }
    .page-registration-download__app-screenshot {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .page-registration-download__hero-title {
        font-size: 1.8em;
    }
    .page-registration-download__hero-subtitle {
        font-size: 1em;
    }
    .page-registration-download__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-download__section {
        padding: 40px 0;
    }
    .page-registration-download__section-title {
        font-size: 1.6em;
    }
    .page-registration-download__sub-section-title {
        font-size: 1.3em;
    }
    .page-registration-download__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-registration-download__article-list {
        grid-template-columns: 1fr;
    }
    .page-registration-download__benefit-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-registration-download__container {
        padding: 0 15px;
    }
    .page-registration-download__hero-title {
        font-size: 1.5em;
    }
    .page-registration-download__hero-subtitle {
        font-size: 0.9em;
    }
    .page-registration-download__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-registration-download__btn {
        width: 100%;
        max-width: 250px;
    }
    .page-registration-download__section-title {
        font-size: 1.4em;
    }
    .page-registration-download__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-registration-download__step-title {
        font-size: 1.3em;
    }
    .page-registration-download__text-block, .page-registration-download__faq-answer p {
        font-size: 0.95em;
    }
    .page-registration-download__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-registration-download__faq-item.active .page-registration-download__faq-answer {
        padding: 10px 15px;
    }
}