.page-login {
    color: #333333; /* Dark text on light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-login__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    background-color: #0A2463; /* Main brand color for hero background */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* To contain the image if it overflows slightly */
    padding-bottom: 60px; /* Add some bottom padding */
}

.page-login__hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above image overlay */
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-login__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #E3B505; /* Accent color for main title */
    line-height: 1.2;
}

.page-login__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-login__cta-button {
    display: inline-block;
    background-color: #E3B505; /* Accent color for CTA button */
    color: #0A2463; /* Dark text on accent button */\    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login__cta-button:hover {
    background-color: #f5cb42; /* Slightly lighter accent on hover */
    transform: translateY(-2px);
}

.page-login__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place image behind text content */
    opacity: 0.2; /* Make the image subtle background */
    overflow: hidden;
}

.page-login__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container without distorting aspect ratio */
    display: block;
    min-width: 200px;
    min-height: 150px;
}

.page-login__info-section,
.page-login__security-section,
.page-login__faq-section,
.page-login__cta-bottom-section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for content sections */
    border-bottom: 1px solid #eeeeee;
}

.page-login__info-section {
    background-color: #f9f9f9; /* Slightly off-white for visual break */
}

.page-login__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Main brand color for section titles */
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.page-login__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #E3B505; /* Accent line under titles */
    margin: 10px auto 0;
}

.page-login__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-login__login-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-login__step-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-login__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #0A2463; /* Main brand color for step number background */
    color: #E3B505; /* Accent color for step number text */
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-login__step-description {
    font-size: 1em;
    color: #666666;
}

.page-login__secondary-cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #0A2463; /* Main brand color for secondary CTA */
    color: #E3B505; /* Accent color for text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-login__secondary-cta-button:hover {
    background-color: #1a3c7a; /* Slightly lighter main color on hover */
    transform: translateY(-2px);
}

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

.page-login__security-item {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.page-login__security-icon {
    width: 400px; /* HTML width attribute */
    height: 300px; /* HTML height attribute */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px; /* Ensure minimum size */
}

.page-login__security-heading {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-login__security-text {
    font-size: 0.95em;
    color: #666666;
}

.page-login__faq-list {
    margin-top: 40px;
}

.page-login__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #0A2463;
    cursor: pointer;
    background-color: #fcfcfc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
    background-color: #f0f0f0;
}

.page-login__faq-toggle {
    font-size: 1.5em;
    color: #E3B505;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become an 'x' or similar for open state */
}

.page-login__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    border-top: 1px solid #e9e9e9;
}

.page-login__cta-bottom-section {
    background-color: #0A2463; /* Main brand color for bottom CTA section */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-login__cta-bottom-content {
    max-width: 800px;
}

.page-login__cta-bottom-title {
    font-size: 2.5em;
    color: #E3B505; /* Accent color for title */
    margin-bottom: 20px;
}

.page-login__cta-bottom-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-login__cta-bottom-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 10px 20px 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login__cta-bottom-button:hover {
    background-color: #f5cb42;
    transform: translateY(-2px);
}

.page-login__cta-bottom-button--alt {
    background-color: #ffffff; /* White background for alternative button */
    color: #0A2463; /* Main brand color text */
    border: 2px solid #E3B505; /* Accent border */
}

.page-login__cta-bottom-button--alt:hover {
    background-color: #f0f0f0;
    border-color: #f5cb42;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-login__main-title {
        font-size: 2.5em;
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__cta-bottom-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-login__hero-section {
        padding-bottom: 40px;
    }
    .page-login__hero-content {
        padding: 40px 15px;
    }
    .page-login__main-title {
        font-size: 2em;
    }
    .page-login__intro-text {
        font-size: 1em;
    }
    .page-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-login__info-section,
    .page-login__security-section,
    .page-login__faq-section,
    .page-login__cta-bottom-section {
        padding: 40px 0;
    }
    .page-login__section-title {
        font-size: 1.6em;
    }
    .page-login__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-login__login-steps {
        grid-template-columns: 1fr;
    }
    .page-login__step-item {
        padding: 25px;
    }
    .page-login__step-title {
        font-size: 1.2em;
    }
    .page-login__security-grid {
        grid-template-columns: 1fr;
    }
    .page-login__security-item {
        padding: 25px;
    }
    .page-login__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-login__faq-answer {
        padding: 10px 20px 15px 20px;
    }
    .page-login__cta-bottom-title {
        font-size: 1.8em;
    }
    .page-login__cta-bottom-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-login__cta-bottom-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 0 5px 15px 5px;
    }

    /* Ensure images do not overflow on mobile */
    .page-login img {
        max-width: 100%;
        height: auto;
    }

    /* Content area max-width for mobile, prevent horizontal scroll */
    .page-login {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Ensure all content images meet minimum size requirements */
.page-login img {
    min-width: 200px;
    min-height: 200px; /* Adjust height based on aspect ratio for minimum, if width is 200px */
    object-fit: cover; /* Use cover for images that fill a space, contain for icons/logos */
}

/* Specific HTML width/height consistency for images */
.page-login__hero-image {
    width: 1200px; /* Display width */
    height: 675px; /* Display height */
    max-width: 100%; /* For responsiveness */
    height: auto; /* Maintain aspect ratio */
}

.page-login__security-icon {
    width: 400px; /* Display width */
    height: 300px; /* Display height */
    max-width: 100%; /* For responsiveness */
    height: auto; /* Maintain aspect ratio */
}