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

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

.page-resources__main-title,
.page-resources__section-title,
.page-resources__card-title {
    color: #FFCC00;
    text-align: center;
    margin-bottom: 20px;
}

.page-resources__main-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-resources__section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-resources__card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC00;
}

.page-resources__paragraph,
.page-resources__intro-text,
.page-resources__card-text,
.page-resources__faq-answer-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: center;
}

.page-resources__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources__paragraph {
    text-align: left;
}

.page-resources__hero-section {
    position: relative;
    padding: 100px 0;
    padding-top: calc(var(--header-offset, 120px) + 60px);
    text-align: center;
    overflow: hidden;
    background-color: #336699;
    color: #ffffff;
}

.page-resources__hero-section .page-resources__container {
    position: relative;
    z-index: 2;
}

.page-resources__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-resources__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources__cta-group--center {
    margin-left: auto;
    margin-right: auto;
}

.page-resources__btn-primary,
.page-resources__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources__btn-primary {
    background-color: #FFCC00;
    color: #121212;
    border: 2px solid #FFCC00;
}

.page-resources__btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-resources__btn-secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-resources__btn-secondary:hover {
    background-color: #FFCC00;
    color: #121212;
}

.page-resources__btn-text {
    display: inline-block;
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-resources__btn-text:hover {
    color: #e6b800;
    text-decoration: underline;
}

.page-resources__content-section,
.page-resources__security-section,
.page-resources__strategies-section,
.page-resources__news-section,
.page-resources__video-section,
.page-resources__faq-section,
.page-resources__cta-section {
    padding: 60px 0;
}

.page-resources__content-section,
.page-resources__strategies-section,
.page-resources__cta-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.page-resources__security-section,
.page-resources__news-section,
.page-resources__faq-section {
    background-color: #121212;
    color: #f0f0f0;
}

.page-resources__image-full {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-resources__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page-resources__grid-three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page-resources__card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-resources__card--inverted {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-resources__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-resources__video-section {
    background-color: #1a1a1a;
    text-align: center;
}

.page-resources__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources__video-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.page-resources__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.page-resources__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: #336699;
    transition: background-color 0.3s ease;
}

.page-resources__faq-question:hover {
    background-color: #2a527a;
}

.page-resources__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFCC00;
}

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

.page-resources__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.page-resources__faq-item.active .page-resources__faq-answer {
    max-height: 1000px !important;
    padding: 20px 25px;
}

.page-resources__faq-answer-text {
    text-align: left;
    color: #f0f0f0;
    margin-bottom: 0;
}

.page-resources__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-resources__cta-container {
    max-width: 900px;
}

.page-resources__cta-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .page-resources__main-title {
        font-size: 2.5em;
    }
    .page-resources__section-title {
        font-size: 2em;
    }
    .page-resources__grid-three-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-resources {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources__main-title {
        font-size: 2em;
    }
    .page-resources__section-title {
        font-size: 1.8em;
    }
    .page-resources__intro-text {
        font-size: 1.1em;
    }
    .page-resources__paragraph,
    .page-resources__card-text,
    .page-resources__faq-answer-text {
        font-size: 1em;
    }

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

    .page-resources__grid-two-cols,
    .page-resources__grid-three-cols {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-resources__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .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;
    }

    .page-resources img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources video,
    .page-resources__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources__video-section,
    .page-resources__video-container,
    .page-resources__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources__container {
        padding: 0 15px;
    }

    .page-resources__section,
    .page-resources__card,
    .page-resources__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-resources__faq-item.active .page-resources__faq-answer {
        padding: 15px 15px !important;
    }
    .page-resources__faq-question {
        padding: 15px 15px;
    }
    .page-resources__faq-answer {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-resources__main-title {
        font-size: 1.8em;
    }
    .page-resources__section-title {
        font-size: 1.5em;
    }
}

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

.page-resources__light-bg {
    color: #f0f0f0;
    background-color: #1a1a1a;
}

.page-resources__card {
    color: #f0f0f0;
}

.page-resources img, .page-resources video {
    filter: none !important;
}