:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-dark: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-products-services-core-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); 
    background-color: var(--background-dark); 
}

.page-products-services-core-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-products-services-core-features__hero-section,
.page-products-services-core-features__intro-section,
.page-products-services-core-features__features-grid,
.page-products-services-core-features__benefits-section,
.page-products-services-core-features__faq-section,
.page-products-services-core-features__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden; 
}

.page-products-services-core-features__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-products-services-core-features__light-bg {
    background-color: #ffffff; 
    color: #333333; 
}

.page-products-services-core-features__hero-section {
    padding: 10px 0 80px 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-main);
}

.page-products-services-core-features__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; 
    object-fit: cover;
    display: block;
    margin-bottom: 40px; 
}

.page-products-services-core-features__hero-content {
    position: relative; 
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-products-services-core-features__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-products-services-core-features__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-products-services-core-features__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: inherit; 
}

.page-products-services-core-features__section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit; 
}

.page-products-services-core-features__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
    color: inherit; 
}

.page-products-services-core-features__text-main {
    color: var(--text-main);
}

.page-products-services-core-features__text-secondary {
    color: var(--text-secondary);
}

.page-products-services-core-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; 
    width: 100%; 
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-products-services-core-features__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; 
    border: none;
}

.page-products-services-core-features__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-products-services-core-features__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-products-services-core-features__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-products-services-core-features__features-grid {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-products-services-core-features__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-products-services-core-features__feature-card {
    background-color: var(--card-bg); 
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    box-sizing: border-box;
    color: var(--text-main);
}

.page-products-services-core-features__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-products-services-core-features__feature-icon {
    width: 100%; 
    height: auto;
    max-height: 250px; 
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; 
    min-width: 200px; 
    min-height: 200px;
}

.page-products-services-core-features__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-products-services-core-features__card-description {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1; 
    color: var(--text-secondary);
}

.page-products-services-core-features__read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: auto; 
}

.page-products-services-core-features__read-more:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-products-services-core-features__benefits-section {
    text-align: left;
    background-color: #ffffff; 
    color: #333333; 
}

.page-products-services-core-features__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-products-services-core-features__benefits-item {
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-products-services-core-features__benefits-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.page-products-services-core-features__benefits-description {
    font-size: 0.95rem;
    color: #555555;
}

.page-products-services-core-features__faq-section {
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-products-services-core-features__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-products-services-core-features__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-products-services-core-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
    border-bottom: 1px solid var(--divider-color);
}

.page-products-services-core-features__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-products-services-core-features__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-products-services-core-features__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--text-main);
}

.page-products-services-core-features__faq-item[open] .page-products-services-core-features__faq-toggle {
    content: "−";
}

.page-products-services-core-features__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-products-services-core-features__faq-item summary {
    list-style: none;
}

.page-products-services-core-features__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: left;
}

@media (max-width: 992px) {
    .page-products-services-core-features__hero-section,
    .page-products-services-core-features__intro-section,
    .page-products-services-core-features__features-grid,
    .page-products-services-core-features__benefits-section,
    .page-products-services-core-features__faq-section,
    .page-products-services-core-features__cta-bottom-section {
        padding: 60px 0;
    }

    .page-products-services-core-features__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-products-services-core-features__hero-description {
        font-size: 1.1rem;
    }

    .page-products-services-core-features__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .page-products-services-core-features__grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-products-services-core-features__hero-section {
        padding-top: 10px !important; 
    }

    .page-products-services-core-features__hero-image {
        max-height: 400px;
    }

    .page-products-services-core-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; 
    }

    .page-products-services-core-features__btn-primary,
    .page-products-services-core-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-products-services-core-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-products-services-core-features__section,
    .page-products-services-core-features__card,
    .page-products-services-core-features__container,
    .page-products-services-core-features__grid-layout,
    .page-products-services-core-features__benefits-list,
    .page-products-services-core-features__faq-list,
    .page-products-services-core-features__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-products-services-core-features__feature-card {
        padding: 25px;
    }

    .page-products-services-core-features__benefits-item {
        padding: 20px;
    }

    .page-products-services-core-features__faq-question,
    .page-products-services-core-features__faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.page-products-services-core-features img {
    filter: none !important;
}