/* style/resources-latest-no-hu-platforms.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #26A9E0;
    --button-login-color: #EA7C07;
    --black-color: #000000;
}

.page-resources-latest-no-hu-platforms {
    color: var(--text-light); /* Body background is dark, so default text is light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--black-color); /* Inherited from shared, ensuring contrast */
}

.page-resources-latest-no-hu-platforms__hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-latest-no-hu-platforms__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-latest-no-hu-platforms__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-resources-latest-no-hu-platforms__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__cta-buttons,
.page-resources-latest-no-hu-platforms__hero-cta-buttons,
.page-resources-latest-no-hu-platforms__cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-resources-latest-no-hu-platforms__btn-primary,
.page-resources-latest-no-hu-platforms__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-latest-no-hu-platforms__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-latest-no-hu-platforms__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-resources-latest-no-hu-platforms__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-latest-no-hu-platforms__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-resources-latest-no-hu-platforms__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-latest-no-hu-platforms__intro-section,
.page-resources-latest-no-hu-platforms__guide-section,
.page-resources-latest-no-hu-platforms__faq-section {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-latest-no-hu-platforms__features-section,
.page-resources-latest-no-hu-platforms__tips-section,
.page-resources-latest-no-hu-platforms__conclusion-section {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-latest-no-hu-platforms__feature-grid,
.page-resources-latest-no-hu-platforms__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-latest-no-hu-platforms__feature-card,
.page-resources-latest-no-hu-platforms__tip-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-latest-no-hu-platforms__feature-card:hover,
.page-resources-latest-no-hu-platforms__tip-card:hover {
    transform: translateY(-5px);
}

.page-resources-latest-no-hu-platforms__feature-icon,
.page-resources-latest-no-hu-platforms__tip-image {
    width: 100%; /* Ensure images are responsive within cards */
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-latest-no-hu-platforms__feature-title,
.page-resources-latest-no-hu-platforms__tip-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-resources-latest-no-hu-platforms__feature-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-resources-latest-no-hu-platforms__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-latest-no-hu-platforms__guide-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.page-resources-latest-no-hu-platforms__guide-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-latest-no-hu-platforms__faq-list {
    margin-top: 40px;
}

.page-resources-latest-no-hu-platforms__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-resources-latest-no-hu-platforms__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* For details summary */
}

.page-resources-latest-no-hu-platforms__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-latest-no-hu-platforms__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--primary-color);
}

.page-resources-latest-no-hu-platforms__faq-answer {
    padding: 20px 25px;
    background-color: var(--secondary-color);
    border-top: 1px solid #eee;
}

.page-resources-latest-no-hu-platforms__faq-item[open] .page-resources-latest-no-hu-platforms__faq-question {
    border-bottom: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-latest-no-hu-platforms__hero-title {
        font-size: 3em;
    }
    .page-resources-latest-no-hu-platforms__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-latest-no-hu-platforms {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-latest-no-hu-platforms__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-latest-no-hu-platforms__hero-title {
        font-size: 2.2em;
    }
    .page-resources-latest-no-hu-platforms__hero-description {
        font-size: 1em;
    }
    .page-resources-latest-no-hu-platforms__btn-primary,
    .page-resources-latest-no-hu-platforms__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-resources-latest-no-hu-platforms__hero-cta-buttons,
    .page-resources-latest-no-hu-platforms__cta-buttons-center {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-latest-no-hu-platforms__container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-latest-no-hu-platforms__section-title {
        font-size: 1.8em;
    }
    .page-resources-latest-no-hu-platforms__feature-icon,
    .page-resources-latest-no-hu-platforms__tip-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-latest-no-hu-platforms__feature-card,
    .page-resources-latest-no-hu-platforms__tip-card,
    .page-resources-latest-no-hu-platforms__guide-item,
    .page-resources-latest-no-hu-platforms__faq-item {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-latest-no-hu-platforms__feature-title,
    .page-resources-latest-no-hu-platforms__guide-title {
        font-size: 1.3em;
    }
    .page-resources-latest-no-hu-platforms__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-resources-latest-no-hu-platforms__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-latest-no-hu-platforms__hero-title {
        font-size: 1.8em;
    }
    .page-resources-latest-no-hu-platforms__hero-description {
        font-size: 0.9em;
    }
    .page-resources-latest-no-hu-platforms__section-title {
        font-size: 1.5em;
    }
}