.page-news {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6);
    background-color: var(--bg-color, #08160F);
}

.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 60px;
    overflow: hidden;
}

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

.page-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    display: block;
}

.page-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    color: #F2FFF6;
}

.page-news__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #F2FFF6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-news__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-news__cta-button--secondary {
    background: transparent;
    border: 2px solid #2AD16F;
    color: #2AD16F;
}

.page-news__cta-button--secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
}

.page-news__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-news__section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-color, #08160F);
}

.page-news__intro-section {
    padding-top: 40px;
}

.page-news__dark-bg {
    background-color: #0A4B2C;
    color: #F2FFF6;
}

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

.page-news__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    margin-bottom: 40px;
    color: #F2FFF6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-news__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #A7D9B8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__card {
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E;
    color: #F2FFF6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-news__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-news__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #F2FFF6;
}

.page-news__card-text {
    font-size: 0.95em;
    margin: 0 20px 20px;
    color: #A7D9B8;
    flex-grow: 1;
}

.page-news__card-link {
    display: block;
    margin: 0 20px 20px;
    color: #57E38D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: right;
}

.page-news__card-link:hover {
    color: #2AD16F;
    text-decoration: underline;
}

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

.page-news__benefit-item {
    background-color: #11271B;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease;
}

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

.page-news__benefit-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-news__benefit-text {
    font-size: 1em;
    color: #A7D9B8;
}

.page-news__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-news__faq-list {
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
}

.page-news__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    background-color: #0A4B2C;
    transition: background-color 0.3s ease;
    color: #F2FFF6;
}

.page-news__faq-item[open] .page-news__faq-question {
    background-color: #11A84E;
}

.page-news__faq-question:hover {
    background-color: #11A84E;
}

.page-news__faq-qtext {
    flex-grow: 1;
    color: inherit;
}

.page-news__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    content: '−';
}

.page-news__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.8;
}

.page-news__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-news__faq-item summary {
    list-style: none;
}

@media (max-width: 1024px) {
    .page-news__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-news__section-title {
        font-size: clamp(1.6em, 4vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding-bottom: 40px;
    }
    .page-news__main-title {
        font-size: clamp(1.8em, 7vw, 2.8em);
        margin-bottom: 15px;
    }
    .page-news__description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-news__section {
        padding: 60px 15px;
    }
    .page-news__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }
    .page-news__text {
        font-size: 0.95em;
    }
    .page-news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-news__card-title {
        font-size: 1.2em;
    }
    .page-news__card-text {
        font-size: 0.9em;
    }
    .page-news__card-link {
        font-size: 0.9em;
    }
    .page-news__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-news__benefit-title {
        font-size: 1.3em;
    }
    .page-news__benefit-text {
        font-size: 0.95em;
    }
    .page-news__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-news__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95em;
    }
    .page-news__button-group {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-news img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__hero-section,
    .page-news__hero-content,
    .page-news__hero-image-wrapper,
    .page-news__faq-list {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-news__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-news__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}