.page-resources {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

.page-resources__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
    text-align: center;
    background-color: #F0F8FF;
    overflow: hidden;
}

.page-resources__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources__hero-title {
    font-size: 3.2em;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources__hero-description {
    font-size: 1.25em;
    color: #555555;
    margin-bottom: 30px;
}

.page-resources__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-resources__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-resources__section {
    padding: 80px 0;
}

.page-resources__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-resources__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources__section-title--white {
    color: #ffffff;
}

.page-resources__section-title--white::after {
    background-color: #ffffff;
}

.page-resources__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources__text-block--white {
    color: #ffffff;
}

.page-resources__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-resources__text-block--white a {
    color: #ffffff;
    text-decoration: underline;
}

.page-resources__btn-primary {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.page-resources__btn-primary:hover {
    background-color: #1a8cc7;
    transform: translateY(-2px);
}

.page-resources__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid #26A9E0;
}

.page-resources__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-resources__btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-resources__general-intro .page-resources__container {
    text-align: center;
}

.page-resources__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources__resource-types {
    background-color: #26A9E0;
    color: #ffffff;
}

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

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

.page-resources__card:hover {
    transform: translateY(-5px);
}

.page-resources__card--dark {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-resources__card--dark .page-resources__card-title {
    color: #ffffff;
}

.page-resources__card--dark .page-resources__card-text a {
    color: #ffffff;
    text-decoration: underline;
}

.page-resources__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources__card-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-resources__image-center {
    display: block;
    margin: 60px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources__benefits {
    background-color: #ffffff;
}

.page-resources__grid--benefits {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: center;
}

.page-resources__benefit-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources__benefit-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-resources__benefit-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-resources__benefit-description {
    font-size: 0.95em;
    color: #555555;
}

.page-resources__how-to-use {
    background-color: #f0faff;
}

.page-resources__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-resources__text-content {
    flex: 1;
    min-width: 300px;
}

.page-resources__image-wrapper--how-to-use {
    flex: 1;
    min-width: 300px;
}

.page-resources__image-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources__ordered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources__list-item {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #26A9E0;
}

.page-resources__list-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-resources__list-description {
    font-size: 1em;
    color: #555555;
}

.page-resources__video-section {
    background-color: #26A9E0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 20px;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources__video {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-resources__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.page-resources__video-wrapper:hover .page-resources__video-overlay {
    opacity: 1;
}

.page-resources__video-cta {
    background-color: #EA7C07;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources__video-cta:hover {
    background-color: #d16b06;
}

.page-resources__faq-section {
    background-color: #ffffff;
}

.page-resources__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.page-resources__faq-item[open] .page-resources__faq-question {
    background-color: #e6e6e6;
    border-bottom: 1px solid #d0d0d0;
}

.page-resources__faq-qtext {
    flex-grow: 1;
    color: #26A9E0;
}

.page-resources__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-resources__faq-item[open] .page-resources__faq-toggle {
    transform: rotate(45deg);
}

.page-resources__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
}

.page-resources__faq-answer p {
    margin-bottom: 10px;
}
.page-resources__faq-answer p:last-child {
    margin-bottom: 0;
}
.page-resources__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-resources__cta-bottom {
    background-color: #000000;
    text-align: center;
    padding: 100px 0;
}

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

@media (max-width: 1024px) {
    .page-resources__hero-title {
        font-size: 2.8em;
    }
    .page-resources__section-title {
        font-size: 2em;
    }
    .page-resources__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources__hero-section {
        padding-bottom: 40px;
    }
    .page-resources__hero-title {
        font-size: 2.2em;
    }
    .page-resources__hero-description {
        font-size: 1.1em;
    }
    .page-resources__section {
        padding: 50px 0;
    }
    .page-resources__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources__text-block {
        font-size: 1em;
        line-height: 1.7;
    }
    .page-resources__btn-primary,
    .page-resources__btn-secondary,
    .page-resources a[class*="button"],
    .page-resources a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px;
    }
    .page-resources__btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-resources__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources__image-full-width,
    .page-resources__image-center,
    .page-resources__image-responsive {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources__section,
    .page-resources__card,
    .page-resources__container,
    .page-resources__video-section,
    .page-resources__video-container,
    .page-resources__video-wrapper,
    .page-resources__cta-buttons,
    .page-resources__button-group,
    .page-resources__btn-container,
    .page-resources__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }

    .page-resources__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources__video-overlay {
        opacity: 1;
    }

    .page-resources__how-to-use .page-resources__content-wrapper {
        flex-direction: column;
    }
    .page-resources__text-content,
    .page-resources__image-wrapper--how-to-use {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources__hero-title {
        font-size: 1.8em;
    }
    .page-resources__section-title {
        font-size: 1.5em;
    }
    .page-resources__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources__faq-answer {
        padding: 15px 20px;
    }
}

.page-resources img {
    min-width: 200px;
    min-height: 200px;
    filter: none;
}

.page-resources__benefit-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-resources {
    color: #333333;
}

.page-resources__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources__hero-section {
    background-color: #f0faff;
    color: #333333;
}
.page-resources__hero-title {
    color: #26A9E0;
}
.page-resources__hero-description {
    color: #555555;
}

.page-resources__resource-types {
    background-color: #26A9E0;
    color: #ffffff;
}
.page-resources__card--dark {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-resources__card--dark .page-resources__card-title {
    color: #ffffff;
}
.page-resources__card--dark .page-resources__card-text a {
    color: #ffffff;
    text-decoration: underline;
}

.page-resources__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
}
.page-resources__btn-primary:hover {
    background-color: #1a8cc7;
}

.page-resources__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}
.page-resources__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources__video-cta {
    background-color: #EA7C07;
    color: #ffffff;
}
.page-resources__video-cta:hover {
    background-color: #d16b06;
}

.page-resources__cta-bottom {
    background-color: #000000;
    color: #ffffff;
}
.page-resources__cta-bottom .page-resources__section-title {
    color: #ffffff;
}
.page-resources__cta-bottom .page-resources__section-title::after {
    background-color: #ffffff;
}
.page-resources__cta-bottom .page-resources__text-block--white a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-resources__faq-qtext {
    color: #26A9E0;
}