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

.page-register-login-registration-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-login-registration-steps .hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%); /* Gold to Crimson for vibrancy */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-register-login-registration-steps .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #000080; /* Dark blue for strong contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-steps .hero-section p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #000080;
}

.page-register-login-registration-steps .btn-primary {
    display: inline-block;
    background-color: #000080; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid #FFD700;
}

.page-register-login-registration-steps .btn-primary:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #000080; /* Dark blue text on hover */
    transform: translateY(-3px);
    border-color: #000080;
}

.page-register-login-registration-steps h2 {
    font-size: 2.5em;
    color: #000080; /* Dark blue for main headings */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-register-login-registration-steps h3 {
    font-size: 1.8em;
    color: #DC143C; /* Crimson for subheadings */
    margin-bottom: 15px;
}

.page-register-login-registration-steps .why-register-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.page-register-login-registration-steps .benefit-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-register-login-registration-steps .benefit-item:hover {
    transform: translateY(-10px);
}

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

.page-register-login-registration-steps .benefit-item h3 {
    color: #000080;
    font-size: 1.5em;
}

.page-register-login-registration-steps .registration-steps-section {
    padding: 60px 0;
    background-color: #e0e0e0;
}

.page-register-login-registration-steps .intro-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-register-login-registration-steps .step-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-register-login-registration-steps .step-item.reverse {
    flex-direction: row-reverse;
}

.page-register-login-registration-steps .step-content {
    flex: 1;
    padding: 40px;
}

.page-register-login-registration-steps .step-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-register-login-registration-steps .step-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-register-login-registration-steps .step-content ul li::before {
    content: '✓';
    color: #DC143C;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-register-login-registration-steps .step-image {
    flex: 1;
    min-width: 40%;
    max-height: 400px;
    overflow: hidden;
}

.page-register-login-registration-steps .step-image .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-register-login-registration-steps .btn-secondary {
    display: inline-block;
    background-color: #DC143C; /* Crimson button */
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    border: 2px solid #DC143C;
}

.page-register-login-registration-steps .btn-secondary:hover {
    background-color: #b3002d;
    transform: translateY(-3px);
    border-color: #b3002d;
}

.page-register-login-registration-steps .important-notes-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.page-register-login-registration-steps .important-notes-section ul {
    max-width: 900px;
    margin: 40px auto;
    list-style: none;
    padding: 0;
}

.page-register-login-registration-steps .important-notes-section ul li {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    color: #444;
}

.page-register-login-registration-steps .important-notes-section ul li strong {
    color: #000080;
}

.page-register-login-registration-steps .download-app-section {
    background-color: #000080; /* Dark blue background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-register-login-registration-steps .download-app-section h2 {
    color: #FFD700; /* Gold heading */
    margin-bottom: 20px;
}

.page-register-login-registration-steps .download-app-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-register-login-registration-steps .app-download-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-register-login-registration-steps .app-screenshot {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-steps .download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-register-login-registration-steps .download-buttons .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border-color: #000080;
}

.page-register-login-registration-steps .download-buttons .btn-primary:hover {
    background-color: #000080; /* Dark blue on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}

.page-register-login-registration-steps .faq-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.page-register-login-registration-steps .faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-register-login-registration-steps .faq-item h3 {
    color: #000080;
    font-size: 1.4em;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-login-registration-steps .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-register-login-registration-steps .faq-item.active h3::after {
    transform: rotate(45deg);
}

.page-register-login-registration-steps .faq-item p {
    margin-top: 15px;
    color: #555;
    display: none;
}

.page-register-login-registration-steps .faq-item.active p {
    display: block;
}

.page-register-login-registration-steps .cta-bottom-section {
    background-color: #FFD700; /* Gold background */
    padding: 70px 0;
    text-align: center;
    color: #000080;
}

.page-register-login-registration-steps .cta-bottom-section h2 {
    color: #000080;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-register-login-registration-steps .cta-bottom-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-register-login-registration-steps .cta-bottom-section .btn-primary {
    background-color: #000080;
    color: #FFD700;
    margin-right: 20px;
}

.page-register-login-registration-steps .cta-bottom-section .btn-primary:hover {
    background-color: #DC143C;
    border-color: #DC143C;
    color: #fff;
}

.page-register-login-registration-steps .cta-bottom-section .btn-secondary {
    background-color: #DC143C;
    color: #fff;
    border-color: #DC143C;
}

.page-register-login-registration-steps .cta-bottom-section .btn-secondary:hover {
    background-color: #000080;
    border-color: #000080;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-registration-steps .hero-section h1 {
        font-size: 2.5em;
    }
    .page-register-login-registration-steps h2 {
        font-size: 2em;
    }
    .page-register-login-registration-steps .step-item {
        flex-direction: column;
    }
    .page-register-login-registration-steps .step-item.reverse {
        flex-direction: column;
    }
    .page-register-login-registration-steps .step-image {
        min-width: 100%;
        max-height: 300px;
    }
    .page-register-login-registration-steps .step-content {
        padding: 30px;
    }
    .page-register-login-registration-steps .app-download-cta {
        flex-direction: column;
    }
    .page-register-login-registration-steps .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-register-login-registration-steps .cta-bottom-section .btn-primary,
    .page-register-login-registration-steps .cta-bottom-section .btn-secondary {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .page-register-login-registration-steps .hero-section {
        padding: 60px 15px;
    }
    .page-register-login-registration-steps .hero-section h1 {
        font-size: 2em;
    }
    .page-register-login-registration-steps .hero-section p {
        font-size: 1em;
    }
    .page-register-login-registration-steps h2 {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-register-login-registration-steps h3 {
        font-size: 1.5em;
    }
    .page-register-login-registration-steps .benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-register-login-registration-steps .step-content ul li {
        padding-left: 20px;
    }
    .page-register-login-registration-steps .important-notes-section ul li {
        padding: 15px 20px;
    }
    .page-register-login-registration-steps .download-app-section {
        padding: 60px 15px;
    }
    .page-register-login-registration-steps .faq-item {
        padding: 20px;
    }
    .page-register-login-registration-steps .cta-bottom-section {
        padding: 50px 15px;
    }
    .page-register-login-registration-steps .cta-bottom-section h2 {
        font-size: 2em;
    }
}