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

/* Base styles for the page content */
.page-register-login-registration-process {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light text for dark background */
    background-color: #0A1931; /* Deep blue primary background */
    padding: 20px 0;
}

/* Container for content width */
.page-register-login-registration-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.page-register-login-registration-process h1,
.page-register-login-registration-process h2,
.page-register-login-registration-process h3 {
    color: #FFD700; /* Gold accent for headings */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register-login-registration-process h1 {
    font-size: 2.8em;
    text-align: center;
    padding-top: 40px;
}

.page-register-login-registration-process h2 {
    font-size: 2.2em;
    margin-top: 40px;
    border-bottom: 2px solid #E03B8B; /* Magenta underline for emphasis */
    padding-bottom: 10px;
}

.page-register-login-registration-process h3 {
    font-size: 1.8em;
    margin-top: 30px;
    color: #FFD700;
}

/* Paragraphs */
.page-register-login-registration-process p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

/* Lists */
.page-register-login-registration-process ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-register-login-registration-process ul li {
    background-color: #1a2a47; /* Slightly lighter blue for list items background */
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    color: #ffffff; /* White text for contrast */
}

.page-register-login-registration-process ul li::before {
    content: '✓'; /* Checkmark icon */
    color: #E03B8B; /* Magenta checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Buttons (CTAs) */
.page-register-login-registration-process-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-register-login-registration-process-btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #0A1931; /* Deep blue text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login-registration-process-btn-primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-register-login-registration-process-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
}

.page-register-login-registration-process-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
}

.page-register-login-registration-process-btn-step {
    background-color: #E03B8B; /* Magenta for step buttons */
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(224, 59, 139, 0.4);
}

.page-register-login-registration-process-btn-step:hover {
    background-color: #c7317a; /* Darker magenta on hover */
    transform: translateY(-3px);
}

.page-register-login-registration-process-btn-hero {
    background-color: #FFD700;
    color: #0A1931;
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.page-register-login-registration-process-btn-hero:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-register-login-registration-process-btn-hero-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: 20px;
}

.page-register-login-registration-process-btn-hero-outline:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-5px);
}


/* Image styles */
.page-register-login-registration-process-img-full {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 3px solid #E03B8B; /* Magenta border for images */
}

.page-register-login-registration-process-img-step {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFD700; /* Gold border for step images */
}

/* Call to action sections */
.page-register-login-registration-process-cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #1a2a47; /* Darker background for CTA sections */
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-process-cta-final {
    background: linear-gradient(135deg, #0A1931, #2c4d7e); /* Gradient background for final CTA */
    padding: 50px 20px;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


/* Responsive design */
@media (max-width: 768px) {
    .page-register-login-registration-process h1 {
        font-size: 2em;
    }
    .page-register-login-registration-process h2 {
        font-size: 1.8em;
    }
    .page-register-login-registration-process h3 {
        font-size: 1.5em;
    }
    .page-register-login-registration-process p {
        font-size: 1em;
    }
    .page-register-login-registration-process-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-registration-process-btn-hero,
    .page-register-login-registration-process-btn-hero-outline {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-register-login-registration-process-cta-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-register-login-registration-process h1 {
        font-size: 1.8em;
    }
    .page-register-login-registration-process h2 {
        font-size: 1.6em;
    }
    .page-register-login-registration-process h3 {
        font-size: 1.3em;
    }
    .page-register-login-registration-process-btn {
        width: 90%;
        margin: 10px auto;
        display: block;
    }
    .page-register-login-registration-process-btn-hero,
    .page-register-login-registration-process-btn-hero-outline {
        width: 90%;
    }
}

/* Ensure contrast for text on various backgrounds */
.page-register-login-registration-process strong {
    color: #FFD700; /* Gold for strong text */
}

/* Specific list styles for FAQ */
.page-register-login-registration-process-faq-list li {
    background-color: #1a2a47;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}
.page-register-login-registration-process-faq-list li strong {
    color: #FFD700;
}
.page-register-login-registration-process-faq-list li::before {
    content: '❓'; /* Question mark for FAQ */
    color: #E03B8B;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-register-login-registration-process-benefits-list li::before {
    content: '✅'; /* Checkmark for benefits */
    color: #FFD700; /* Gold checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

/* Styles for form fields if they were in main content */
.page-register-login-registration-process-form-fields li strong {
    color: #FFD700;
}
.page-register-login-registration-process-form-fields li::before {
    content: '➡️'; /* Arrow for form fields */
    color: #E03B8B;
    margin-right: 10px;
    font-size: 1.2em;
}