/* style/login-portal.css */
.page-login-portal {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-login-portal__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-login-portal__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

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

.page-login-portal__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-login-portal__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;
}

.page-login-portal__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

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

.page-login-portal__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-login-portal__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-login-portal__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-login-portal__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-login-portal__info-section,
.page-login-portal__guide-section,
.page-login-portal__app-download,
.page-login-portal__faq-section,
.page-login-portal__details-section,
.page-login-portal__cta-bottom,
.page-login-portal__long-content {
    padding: 60px 0;
    text-align: center;
}

.page-login-portal__info-section {
    background-color: #fff;
}

.page-login-portal__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-login-portal__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login-portal__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.page-login-portal__feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-login-portal__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-login-portal__feature-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-login-portal__feature-text {
    font-size: 1em;
    color: #666;
}

.page-login-portal__guide-section {
    background-color: #f0f0f0;
}

.page-login-portal__guide-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-login-portal__step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-login-portal__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-login-portal__step-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-login-portal__step p {
    color: #666;
}

.page-login-portal__step a {
    color: #003366;
    text-decoration: underline;
}

.page-login-portal__guide-text {
    margin-top: 50px;
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-login-portal__app-download {
    background-color: #003366;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-login-portal__app-download .page-login-portal__section-title {
    color: #FFD700;
}

.page-login-portal__app-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
}

.page-login-portal__app-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.page-login-portal__btn--app-download {
    background-color: #FFD700;
    color: #003366;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-login-portal__btn--app-download:hover {
    background-color: #e6c200;
}

.page-login-portal__app-icon {
    width: 24px;
    height: 24px;
}

.page-login-portal__app-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-login-portal__faq-section {
    background-color: #fff;
}

.page-login-portal__faq-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-login-portal__faq-item {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-login-portal__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-login-portal__faq-answer {
    color: #555;
    font-size: 1em;
}

.page-login-portal__details-section {
    background-color: #f0f0f0;
}

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

.page-login-portal__detail-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-login-portal__detail-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-login-portal__detail-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-login-portal__detail-title a:hover {
    color: #FFD700;
}

.page-login-portal__detail-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-login-portal__btn--details {
    background-color: #003366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    align-self: flex-start;
}

.page-login-portal__btn--details:hover {
    background-color: #004488;
}

.page-login-portal__cta-bottom {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.page-login-portal__cta-bottom .page-login-portal__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-login-portal__cta-bottom .page-login-portal__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-login-portal__long-content {
    background-color: #fff;
    text-align: left;
}

.page-login-portal__long-content h2,
.page-login-portal__long-content h3 {
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-login-portal__long-content h2 {
    font-size: 2.2em;
}

.page-login-portal__long-content h3 {
    font-size: 1.8em;
}

.page-login-portal__long-content p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-login-portal__long-content .page-login-portal__highlight {
    color: #003366;
    font-weight: bold;
}

.page-login-portal__long-content a {
    color: #003366;
    text-decoration: underline;
}

.page-login-portal__long-content a:hover {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-login-portal__hero-title {
        font-size: 2.8em;
    }
    .page-login-portal__section-title {
        font-size: 2em;
    }
    .page-login-portal__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-login-portal__hero-content, .page-login-portal__hero-image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-login-portal__hero-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-login-portal__hero {
        padding: 60px 0;
    }
    .page-login-portal__hero-title {
        font-size: 2.2em;
    }
    .page-login-portal__hero-description {
        font-size: 1.1em;
    }
    .page-login-portal__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-login-portal__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-login-portal__section-title {
        font-size: 1.8em;
    }
    .page-login-portal__features, .page-login-portal__guide-steps, .page-login-portal__app-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-login-portal__feature-item, .page-login-portal__step {
        max-width: 90%;
    }
    .page-login-portal__app-image {
        max-width: 95%;
    }
    .page-login-portal__detail-item {
        max-width: 90%;
        margin: 0 auto;
    }
    .page-login-portal__long-content h2 {
        font-size: 1.8em;
    }
    .page-login-portal__long-content h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-login-portal__hero-title {
        font-size: 1.8em;
    }
    .page-login-portal__hero-description {
        font-size: 1em;
    }
    .page-login-portal__section-title {
        font-size: 1.5em;
    }
    .page-login-portal__feature-title {
        font-size: 1.3em;
    }
    .page-login-portal__step-title {
        font-size: 1.2em;
    }
    .page-login-portal__faq-question {
        font-size: 1.2em;
    }
    .page-login-portal__detail-title {
        font-size: 1.2em;
    }
    .page-login-portal__long-content h2 {
        font-size: 1.6em;
    }
    .page-login-portal__long-content h3 {
        font-size: 1.3em;
    }
    .page-login-portal__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}