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

.page-resources__hero-section {
    padding-top: var(--header-offset, 120px);
    position: relative;
    overflow: hidden;
}

.page-resources__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

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

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

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

.page-resources__hero-content {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(1, 116, 57, 0.8) 0%, rgba(1, 116, 57, 0.6) 100%);
    color: #ffffff;
    border-radius: 8px;
    margin: 0 15px;
}

.page-resources__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-resources__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources__btn-primary,
.page-resources__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

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

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

.page-resources__btn-secondary:hover {
    background-color: #f0f2f5;
    color: #005a2e;
    border-color: #005a2e;
}

.page-resources__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #017439;
    font-weight: bold;
}

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

.page-resources__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-resources__dark-section .page-resources__section-description {
    color: #f0f0f0;
}

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

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

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

.page-resources__analysis-item,
.page-resources__strategy-item,
.page-resources__news-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-resources__dark-section .page-resources__strategy-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-resources__analysis-item:hover,
.page-resources__strategy-item:hover,
.page-resources__news-item:hover {
    transform: translateY(-5px);
}

.page-resources__analysis-image,
.page-resources__strategy-image,
.page-resources__news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-resources__analysis-item-title,
.page-resources__strategy-item-title,
.page-resources__news-item-title {
    font-size: 1.4em;
    margin: 20px 20px 10px 20px;
    color: #017439;
    min-height: 60px;
}

.page-resources__dark-section .page-resources__strategy-item-title {
    color: #ffffff;
}

.page-resources__analysis-item-title a,
.page-resources__strategy-item-title a,
.page-resources__news-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-resources__analysis-item-title a:hover,
.page-resources__strategy-item-title a:hover,
.page-resources__news-item-title a:hover {
    color: #005a2e;
}

.page-resources__dark-section .page-resources__strategy-item-title a:hover {
    color: #c9e6d8;
}

.page-resources__analysis-item-text,
.page-resources__strategy-item-text,
.page-resources__news-item-text {
    font-size: 0.95em;
    padding: 0 20px;
    margin-bottom: 15px;
    flex-grow: 1;
    color: #555555;
}

.page-resources__dark-section .page-resources__strategy-item-text {
    color: #e0e0e0;
}

.page-resources__read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px 20px;
    background-color: #017439;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-resources__read-more:hover {
    background-color: #005a2e;
}

.page-resources__dark-section .page-resources__read-more {
    background-color: #ffffff;
    color: #017439;
}

.page-resources__dark-section .page-resources__read-more:hover {
    background-color: #f0f2f5;
    color: #005a2e;
}

.page-resources__cta-buttons--center {
    text-align: center;
    margin-top: 40px;
}

.page-resources__data-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources__data-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources__data-text {
    flex: 1;
}

.page-resources__data-subtitle {
    font-size: 1.6em;
    color: #017439;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-resources__data-paragraph {
    margin-bottom: 20px;
    color: #555555;
}

.page-resources__data-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #555555;
}

.page-resources__data-list li {
    margin-bottom: 8px;
}

.page-resources__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources__responsible-list li {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #ffffff;
}

.page-resources__responsible-list li::before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

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

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

.page-resources__faq-item {
    background-color: #ffffff;
    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: 18px 25px;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

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

.page-resources__faq-title {
    font-size: 1.2em;
    color: #017439;
    margin: 0;
    flex-grow: 1;
}

.page-resources__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #017439;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

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

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

.page-resources__faq-answer p {
    margin: 0;
}

.page-resources__cta-section {
    background-color: #017439;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 40px;
    border-radius: 8px;
    margin-left: 15px;
    margin-right: 15px;
}

.page-resources__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-resources__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources__hero-title {
        font-size: 2.2em;
    }
    .page-resources__section-title {
        font-size: 1.8em;
    }
    .page-resources__data-content {
        flex-direction: column;
    }
    .page-resources__data-image {
        max-width: 80%;
    }
}

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

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

    .page-resources__hero-content {
        padding: 40px 15px;
    }

    .page-resources__hero-title {
        font-size: 1.8em;
    }

    .page-resources__hero-description {
        font-size: 1em;
    }

    .page-resources__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources__btn-primary,
    .page-resources__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources__section {
        padding: 40px 15px;
    }

    .page-resources__section-title {
        font-size: 1.6em;
    }

    .page-resources__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-resources__analysis-grid,
    .page-resources__strategy-grid,
    .page-resources__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources__analysis-image,
    .page-resources__strategy-image,
    .page-resources__news-image,
    .page-resources__data-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-resources__analysis-item-title,
    .page-resources__strategy-item-title,
    .page-resources__news-item-title {
        font-size: 1.2em;
        margin: 15px 15px 8px 15px;
        min-height: auto;
    }

    .page-resources__analysis-item-text,
    .page-resources__strategy-item-text,
    .page-resources__news-item-text {
        padding: 0 15px;
        font-size: 0.9em;
    }

    .page-resources__read-more {
        margin: 0 15px 15px 15px;
        padding: 8px 15px;
    }

    .page-resources__data-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-resources__data-image {
        max-width: 100%;
    }

    .page-resources__data-subtitle {
        font-size: 1.4em;
    }

    .page-resources__responsible-list li {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-resources__faq-question {
        padding: 15px 20px;
    }

    .page-resources__faq-title {
        font-size: 1.1em;
    }

    .page-resources__faq-toggle {
        font-size: 1.5em;
    }

    .page-resources__faq-answer {
        padding: 10px 20px 20px 20px;
    }

    .page-resources__cta-section {
        padding: 60px 15px;
    }

    .page-resources__cta-title {
        font-size: 2em;
    }

    .page-resources__cta-description {
        font-size: 1em;
    }

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

    .page-resources__container,
    .page-resources__hero-content,
    .page-resources__analysis-grid,
    .page-resources__strategy-grid,
    .page-resources__news-grid,
    .page-resources__data-content,
    .page-resources__faq-list,
    .page-resources__cta-content {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow-x: hidden !important;
    }
}

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

.page-resources__video-section,
.page-resources__video-container,
.page-resources__video-wrapper,
.page-resources__cta-buttons,
.page-resources__button-group,
.page-resources__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-resources img,
  .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,
  .page-resources__cta-buttons,
  .page-resources__button-group,
  .page-resources__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}