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

.page-login__hero-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-login__main-title {
    font-size: 3.2em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-login__hero-description {
    font-size: 1.2em;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-login__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Dark text for login button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 40px;
}

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

.page-login__hero-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-login__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-login__paragraph {
    font-size: 1.05em;
    color: #444444;
    margin-bottom: 25px;
    text-align: justify;
}

.page-login__login-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.page-login__step-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-login__step-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.page-login__step-description {
    font-size: 1em;
    color: #555555;
    text-align: center;
    max-width: 700px;
    margin-bottom: 20px;
}

.page-login__step-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-login__cta-section {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-login__cta-text {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-login__cta-button--bottom {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-login__security-list, .page-login__troubleshooting-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.page-login__security-item, .page-login__troubleshooting-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.page-login__security-subtitle, .page-login__troubleshooting-subtitle {
    font-size: 1.5em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-login__security-description, .page-login__troubleshooting-description {
    font-size: 1em;
    color: #555555;
}

.page-login__security-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto 60px auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-login__faq-item[open] .page-login__faq-question {
    background-color: #f0f0f0;
}

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

.page-login__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
    transform: rotate(45deg);
}

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

.page-login__faq-answer p {
    margin: 0;
}

.page-login__related-resources {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.page-login__resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.page-login__resource-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-login__resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-login__resource-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.page-login__resource-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 15px 10px 15px;
    text-align: left;
}

.page-login__resource-description {
    font-size: 0.95em;
    color: #666666;
    margin: 0 15px 20px 15px;
    text-align: left;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-login__main-title {
        font-size: 2.8em;
    }
    .page-login__section-title {
        font-size: 2em;
    }
    .page-login__hero-description {
        font-size: 1.1em;
    }
    .page-login__step-title {
        font-size: 1.6em;
    }
    .page-login__cta-text {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-login__main-title {
        font-size: 2.2em;
    }
    .page-login__hero-description {
        font-size: 1em;
    }
    .page-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__paragraph {
        font-size: 0.95em;
    }
    .page-login__step-item {
        padding: 20px;
    }
    .page-login__step-title {
        font-size: 1.4em;
    }
    .page-login__step-image,
    .page-login__security-image {
        max-width: 100%;
        height: auto; /* Ensures images are responsive */
    }
    .page-login__security-subtitle,
    .page-login__troubleshooting-subtitle {
        font-size: 1.3em;
    }
    .page-login__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-login__faq-answer {
        padding: 15px 20px;
    }
    .page-login__resource-cards {
        grid-template-columns: 1fr;
    }
    .page-login__resource-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-login__hero-section {
        padding: 60px 15px;
    }
    .page-login__main-title {
        font-size: 1.8em;
    }
    .page-login__hero-description {
        font-size: 0.9em;
    }
    .page-login__content-area {
        padding: 40px 15px;
    }
    .page-login__section-title {
        font-size: 1.5em;
    }
    .page-login__cta-text {
        font-size: 1.1em;
    }
    .page-login__cta-button--bottom {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-login__step-title {
        font-size: 1.2em;
    }
    .page-login__security-subtitle,
    .page-login__troubleshooting-subtitle {
        font-size: 1.1em;
    }
    .page-login__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-login__faq-answer {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .page-login__resource-image {
        height: 150px;
    }
}