.page-login {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #0D0D0D; /* Ensure consistency, though body handles it */
}

.page-login__hero-section {
    position: relative;
    padding: 80px 20px 60px; /* Adjust padding to avoid double offset */
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(255, 215, 0, 0.1) 100%); /* Subtle gradient with brand colors */
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

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

.page-login__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.page-login__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-login__intro-text {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-login__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

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

.page-login__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.page-login__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.page-login__btn--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 10px;
    background-color: #FFD700;
    color: #1A1A1A;
    border: none;
}

.page-login__btn--inline:hover {
    background-color: #e6c200;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.page-login__btn--center {
    display: block;
    margin: 40px auto 20px;
    max-width: 300px;
}

.page-login__info-section,
.page-login__process-section,
.page-login__security-section,
.page-login__faq-section,
.page-login__benefits-section,
.page-login__support-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark background for sections */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login__section-title {
    font-size: 2.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-login__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 25px;
}

.page-login__ordered-list,
.page-login__benefits-list,
.page-login__support-channels {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-login__list-item {
    background-color: rgba(255, 215, 0, 0.05); /* Subtle gold background for list items */
    border-left: 5px solid #FFD700;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.page-login__list-item:hover {
    transform: translateX(5px);
}

.page-login__list-title,
.page-login__benefits-item-title,
.page-login__security-item-title,
.page-login__support-channel-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-login__list-item p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-login__process-image,
.page-login__security-image,
.page-login__faq-image,
.page-login__benefits-image,
.page-login__support-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

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

.page-login__security-item {
    background-color: rgba(255, 215, 0, 0.08);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-login__security-item:hover {
    background-color: rgba(255, 215, 0, 0.15);
}

.page-login__security-item p {
    color: #e0e0e0;
}

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

.page-login__faq-item {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-login__faq-question {
    width: 100%;
    background-color: #1A1A1A;
    color: #FFD700;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-login__faq-question:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.page-login__faq-question.active {
    background-color: #FFD700;
    color: #1A1A1A;
}

.page-login__faq-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.page-login__faq-question.active .page-login__faq-icon {
    transform: rotate(180deg);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%231A1A1A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-up"><polyline points="18 15 12 9 6 15"></polyline></svg>') no-repeat center center;
}

.page-login__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.page-login__faq-answer.active {
    max-height: 500px; /* Sufficiently large value for content */
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-login__faq-answer p {
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.7;
}

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

.page-login__benefits-item {
    background-color: rgba(255, 215, 0, 0.08);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-login__benefits-item:hover {
    background-color: rgba(255, 215, 0, 0.15);
}

.page-login__benefits-item p {
    color: #e0e0e0;
}

.page-login__support-content {
    margin-top: 30px;
}

.page-login__support-content p {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-login__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.page-login__support-channel-item {
    background-color: rgba(255, 215, 0, 0.08);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login__support-channel-item p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-login__main-title {
        font-size: 2.8em;
    }

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

@media (max-width: 768px) {
    .page-login {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
    }

    .page-login__hero-section {
        padding: 60px 15px 40px;
    }

    .page-login__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-login__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-login__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-login__btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-login__info-section,
    .page-login__process-section,
    .page-login__security-section,
    .page-login__faq-section,
    .page-login__benefits-section,
    .page-login__support-section {
        margin: 40px auto;
        padding: 25px;
    }

    .page-login__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-login__section-description {
        font-size: 0.95em;
    }

    .page-login__list-title,
    .page-login__benefits-item-title,
    .page-login__security-item-title,
    .page-login__support-channel-title {
        font-size: 1.3em;
    }

    .page-login__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-login__faq-answer {
        padding: 0 20px;
    }

    .page-login__security-grid,
    .page-login__benefits-list,
    .page-login__support-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-login__process-image,
    .page-login__security-image,
    .page-login__faq-image,
    .page-login__benefits-image,
    .page-login__support-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-login__main-title {
        font-size: 1.8em;
    }

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

    .page-login__faq-question {
        font-size: 1em;
    }
}

/* Ensure no img filter properties are used */
.page-login img {
    filter: none; /* Explicitly ensure no filters */
}
/* Ensure content images are not small */
.page-login__hero-image img,
.page-login__process-image,
.page-login__security-image,
.page-login__faq-image,
.page-login__benefits-image,
.page-login__support-image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure CSS image dimensions do not override HTML attributes to smaller values */
.page-login__process-image[width="800"][height="600"],
.page-login__security-image[width="1000"][height="750"],
.page-login__faq-image[width="800"][height="600"],
.page-login__benefits-image[width="1200"][height="800"],
.page-login__support-image[width="1000"][height="750"] {
    width: auto; /* Allow HTML width/height to guide, and max-width: 100% for responsiveness */
    height: auto;
}