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

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

.page-login__hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-login__hero-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-login__hero-button--secondary {
    background-color: #0056b3;
    color: #ffffff;
}

.page-login__hero-button--secondary:hover {
    background-color: #004085;
}

.page-login__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
}

.page-login__content-section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-login__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-login__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-login__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-login__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-login__ordered-list,
.page-login__unordered-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.page-login__list-item {
    background-color: #eaf6ff;
    border-left: 5px solid #007bff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-login__unordered-list .page-login__list-item {
    background-color: #fffde7;
    border-left: 5px solid #ffc107;
}

.page-login__list-title {
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-login__unordered-list .page-login__list-title {
    color: #997404;
}

.page-login__list-item p {
    margin-bottom: 0;
}

.page-login__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

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

.page-login__cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-login__cta-button--primary {
    background-color: #007bff;
}

.page-login__cta-button--secondary {
    background-color: #ffc107;
    color: #333333;
}

.page-login__cta-button--secondary:hover {
    background-color: #e0a800;
    color: #333333;
}

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

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

.page-login__faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f0f8ff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    transition: background-color 0.3s ease;
}

.page-login__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #007bff;
}

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

.page-login__faq-icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bff"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.page-login__faq-answer {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-login__faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #555555;
    border-top: 1px solid #eee;
}

.page-login__faq-question.active + .page-login__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 0;
    padding-bottom: 25px;
}

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

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

.page-login__advantages-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-login__advantages-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-login__advantages-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

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

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

    .page-login__hero-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }

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

    .page-login__text-content {
        font-size: 1em;
    }

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

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

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

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

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

    .page-login__hero-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

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

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

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