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

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

.page-login-portal-alternative-urls__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-login-portal-alternative-urls__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-portal-alternative-urls__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login-portal-alternative-urls__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-login-portal-alternative-urls__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-login-portal-alternative-urls__button--primary {
    background-color: #FFD700;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-login-portal-alternative-urls__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-login-portal-alternative-urls__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-login-portal-alternative-urls__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-login-portal-alternative-urls__section:nth-of-type(even) {
    background-color: #eef4f8;
}

.page-login-portal-alternative-urls__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-login-portal-alternative-urls__subsection-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-login-portal-alternative-urls__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-login-portal-alternative-urls__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-login-portal-alternative-urls__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-login-portal-alternative-urls__text-content ul,
.page-login-portal-alternative-urls__text-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: #444;
}

.page-login-portal-alternative-urls__text-content li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-login-portal-alternative-urls__image-wrapper {
    text-align: center;
}

.page-login-portal-alternative-urls__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.page-login-portal-alternative-urls__services {
    background-color: #003366;
    color: #fff;
}

.page-login-portal-alternative-urls__services .page-login-portal-alternative-urls__section-title {
    color: #FFD700;
}

.page-login-portal-alternative-urls__services .page-login-portal-alternative-urls__section-title::after {
    background-color: #fff;
}

.page-login-portal-alternative-urls__services p {
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

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

.page-login-portal-alternative-urls__card {
    background-color: #004488;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login-portal-alternative-urls__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-login-portal-alternative-urls__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-login-portal-alternative-urls__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-login-portal-alternative-urls__card p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-login-portal-alternative-urls__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-login-portal-alternative-urls__cta-register {
    background-color: #f0f8ff;
    text-align: center;
}

.page-login-portal-alternative-urls__text-center {
    text-align: center;
    font-size: 1.1em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-login-portal-alternative-urls__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login-portal-alternative-urls__app-download {
    background-color: #fff;
}

.page-login-portal-alternative-urls__faq {
    background-color: #f0f8ff;
}

.page-login-portal-alternative-urls__faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-login-portal-alternative-urls__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login-portal-alternative-urls__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eef4f8;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-login-portal-alternative-urls__faq-question:hover {
    background-color: #e0eaf1;
}

.page-login-portal-alternative-urls__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-login-portal-alternative-urls__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-login-portal-alternative-urls__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-login-portal-alternative-urls__faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 20px;
}

.page-login-portal-alternative-urls__faq-answer p {
    color: #555;
    margin-bottom: 0;
}

.page-login-portal-alternative-urls__final-cta {
    background: linear-gradient(45deg, #003366, #001a33);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-login-portal-alternative-urls__final-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login-portal-alternative-urls__final-cta-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-login-portal-alternative-urls__final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-login-portal-alternative-urls__hero-title {
        font-size: 2.8em;
    }
    .page-login-portal-alternative-urls__hero-subtitle {
        font-size: 1.3em;
    }
    .page-login-portal-alternative-urls__section-title {
        font-size: 2em;
    }
    .page-login-portal-alternative-urls__subsection-title {
        font-size: 1.6em;
    }
    .page-login-portal-alternative-urls__content-grid {
        grid-template-columns: 1fr;
    }
    .page-login-portal-alternative-urls__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-login-portal-alternative-urls__image-wrapper {
        order: -1; /* For reverse grid on mobile */
    }
    .page-login-portal-alternative-urls__service-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-login-portal-alternative-urls__final-cta-title {
        font-size: 2.5em;
    }
    .page-login-portal-alternative-urls__final-cta-subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-login-portal-alternative-urls__hero {
        padding: 80px 0;
    }
    .page-login-portal-alternative-urls__hero-title {
        font-size: 2.2em;
    }
    .page-login-portal-alternative-urls__hero-subtitle {
        font-size: 1.1em;
    }
    .page-login-portal-alternative-urls__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-login-portal-alternative-urls__button {
        width: 80%;
        max-width: 300px;
    }
    .page-login-portal-alternative-urls__section {
        padding: 40px 0;
    }
    .page-login-portal-alternative-urls__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-login-portal-alternative-urls__subsection-title {
        font-size: 1.4em;
    }
    .page-login-portal-alternative-urls__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-login-portal-alternative-urls__faq-answer {
        padding: 0 15px;
    }
    .page-login-portal-alternative-urls__final-cta {
        padding: 60px 0;
    }
    .page-login-portal-alternative-urls__final-cta-title {
        font-size: 2em;
    }
    .page-login-portal-alternative-urls__final-cta-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-login-portal-alternative-urls__hero-title {
        font-size: 1.8em;
    }
    .page-login-portal-alternative-urls__hero-subtitle {
        font-size: 1em;
    }
    .page-login-portal-alternative-urls__section-title {
        font-size: 1.5em;
    }
    .page-login-portal-alternative-urls__final-cta-title {
        font-size: 1.6em;
    }
    .page-login-portal-alternative-urls__final-cta-subtitle {
        font-size: 1em;
    }
    .page-login-portal-alternative-urls__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}