.page-login {
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-login__hero-section {
    position: relative;
    background-color: #003366; /* Dark blue background for hero */
    color: #ffffff; /* White text on dark background */
    padding: 80px 20px;
    text-align: center;
    overflow: hidden; /* To contain the image if it overflows slightly */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensure hero section has a minimum height */
}

.page-login__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the hero section */
    opacity: 0.2; /* Subtle background effect */
    z-index: 0;
}

.page-login__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-login__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-login__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-login__button {
    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;
    min-width: 200px; /* Ensure buttons are large enough */
    text-align: center;
}

.page-login__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #003366; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-login__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-login__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
}

.page-login__button--secondary:hover {
    background-color: #003366;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-login__content-section,
.page-login__security-section,
.page-login__faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light grey background for content sections */
}

.page-login__content-section:nth-of-type(even),
.page-login__faq-section:nth-of-type(even) {
    background-color: #ffffff; /* Alternate white background */
}

.page-login__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.page-login__section-title {
    font-size: 2.2em;
    color: #003366; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-login__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
}

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

.page-login__step-item {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-login__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700; /* Gold step number */
    margin-right: 20px;
    flex-shrink: 0;
}

.page-login__step-title {
    font-size: 1.4em;
    color: #003366; /* Dark blue step title */
    margin-bottom: 10px;
}

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

.page-login__action-area {
    text-align: center;
    margin-top: 50px;
}

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

.page-login__security-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-login__security-icon {
    width: 250px; /* Enforce min 200px image size */
    height: 200px; /* Enforce min 200px image size */
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-login__security-heading {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 15px;
}

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

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

.page-login__faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #003366;
    cursor: pointer;
    background-color: #f0f8ff; /* Light blueish background for summary */
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

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

.page-login__faq-toggle {
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

/* For a simple '-' instead of 'x' when open: */
.page-login__faq-item[open] .page-login__faq-toggle {
    content: '-';
    transform: rotate(0deg);
}

.page-login__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-login__hero-title {
        font-size: 2em;
    }

    .page-login__hero-description {
        font-size: 1em;
    }

    .page-login__hero-actions {
        flex-direction: column;
    }

    .page-login__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-login__section-title {
        font-size: 1.8em;
    }

    .page-login__login-steps,
    .page-login__security-grid {
        grid-template-columns: 1fr;
    }
    
    .page-login img {
        max-width: 100%; /* Ensure images don't overflow on mobile */
        height: auto;
    }
}