.page-login {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-login__hero-section {
    text-align: center;
    padding: 40px 0;
}

.page-login__image-container {
    margin-bottom: 20px;
}

.page-login__image-container img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* For 1920x1080 */
    object-fit: cover;
    border-radius: 8px;
}

.page-login__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-login__main-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem); /* Min 1.5rem, preferred 5vw, max 2.5rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Main accent color */
    letter-spacing: -0.02em;
}

.page-login__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.page-login__form-section {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

.page-login__form-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #F2C14E;
}

.page-login__form-group {
    margin-bottom: 20px;
}

.page-login__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #FFF6D6;
}

.page-login__input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #3A2A12;
    border-radius: 5px;
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.page-login__input:focus {
    border-color: #F2C14E;
    outline: none;
}

.page-login__button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Darker text for contrast on yellow button */
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.page-login__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4); /* Glow color */
}

.page-login__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.page-login__link {
    color: #FFD36B; /* Auxiliary color for links */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.page-login__link:hover {
    color: #F2C14E;
}

/* Benefits Section */
.page-login__benefits-section {
    padding: 60px 0;
    text-align: center;
}

.page-login__benefits-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #F2C14E;
}

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

.page-login__benefit-item {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #3A2A12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-login__benefit-icon-container {
    margin-bottom: 15px;
}

.page-login__benefit-icon {
    width: 250px; /* Minimum size */
    height: 200px; /* Minimum size */
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 5px;
}

.page-login__benefit-text h3 {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-login__benefit-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
}

/* FAQ Section */
.page-login__faq-section {
    padding: 60px 0;
}

.page-login__faq-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E;
}

.page-login__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD36B;
    cursor: pointer;
    background-color: #1a1a1a;
    transition: background-color 0.3s ease;
}

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

.page-login__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-login__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-login__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-login__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* CTA Section */
.page-login__cta-section {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    margin: 60px auto;
    max-width: 900px;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-login__cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2C14E;
    margin-bottom: 20px;
}

.page-login__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__cta-button {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-login__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
    .page-login__form-section {
        padding: 30px;
        max-width: 90%;
    }

    .page-login__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-login__benefits-title,
    .page-login__faq-title,
    .page-login__cta-title {
        font-size: 1.8rem;
    }

    .page-login__cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 549px) {
    .page-login__description {
        font-size: 1rem;
    }

    .page-login__form-section {
        padding: 25px;
    }

    .page-login__form-title {
        font-size: 1.8rem;
    }

    .page-login__benefits-title,
    .page-login__faq-title,
    .page-login__cta-title {
        font-size: 1.6rem;
    }

    .page-login__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-login__cta-button {
        font-size: 1.1rem;
        padding: 14px 25px;
    }
}

/* Ensure all content area images are responsive */
.page-login img {
    max-width: 100%;
    height: auto;
}