/* style/resources-ku11net-app-new-features.css */

/* Base styles for the page content */
.page-resources-ku11net-app-new-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set for clarity, but body already white */
}

/* Container for content sections */
.page-resources-ku11net-app-new-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section styling */
.page-resources-ku11net-app-new-features__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Section titles */
.page-resources-ku11net-app-new-features__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Section descriptions */
.page-resources-ku11net-app-new-features__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

/* Links within content */
.page-resources-ku11net-app-new-features__link {
    color: #017439;
    text-decoration: underline;
}

.page-resources-ku11net-app-new-features__link:hover {
    color: #005f2c;
    text-decoration: none;
}

/* Buttons */
.page-resources-ku11net-app-new-features__btn-primary,
.page-resources-ku11net-app-new-features__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;
    text-align: center;
    max-width: 100%; /* Ensure buttons are responsive */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-ku11net-app-new-features__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #017439;
    margin-right: 15px;
}

.page-resources-ku11net-app-new-features__btn-primary:hover {
    background-color: #005f2c; /* Slightly darker green on hover */
    border-color: #005f2c;
}

.page-resources-ku11net-app-new-features__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand primary color for text */
    border: 2px solid #017439;
}

.page-resources-ku11net-app-new-features__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2c;
    border-color: #005f2c;
}

/* CTA buttons container */
.page-resources-ku11net-app-new-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hero Section */
.page-resources-ku11net-app-new-features__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #017439, #005f2c); /* Gradient using brand colors */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-ku11net-app-new-features__hero-content {
    z-index: 2; /* Ensure content is above overlay */
    max-width: 800px;
}

.page-resources-ku11net-app-new-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
}

.page-resources-ku11net-app-new-features__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-ku11net-app-new-features__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.page-resources-ku11net-app-new-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add an overlay for blending */
.page-resources-ku11net-app-new-features__hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text stand out */
    z-index: 1;
}

/* Intro Section */
.page-resources-ku11net-app-new-features__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Features Section */
.page-resources-ku11net-app-new-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-ku11net-app-new-features__feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-ku11net-app-new-features__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-ku11net-app-new-features__feature-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-resources-ku11net-app-new-features__feature-heading {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-resources-ku11net-app-new-features__feature-item p {
    font-size: 1em;
    color: #555555;
}

/* Video Section */
.page-resources-ku11net-app-new-features__video-section {
    background-color: #f8f8f8;
    text-align: center;
}

.page-resources-ku11net-app-new-features__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Max width for the video */
    margin: 0 auto;
    background-color: #000; /* Placeholder background */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%; /* Ensure wrapper is responsive */
    box-sizing: border-box;
}

.page-resources-ku11net-app-new-features__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-resources-ku11net-app-new-features__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Benefits Section */
.page-resources-ku11net-app-new-features__benefits {
    background-color: #ffffff;
}

.page-resources-ku11net-app-new-features__benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-resources-ku11net-app-new-features__benefit-item {
    background-color: #f9f9f9;
    border-left: 5px solid #017439;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-ku11net-app-new-features__benefit-heading {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
}

.page-resources-ku11net-app-new-features__benefit-item p {
    color: #555555;
}

/* Download Section */
.page-resources-ku11net-app-new-features__download {
    background-color: #eaf7ed; /* Light green background */
}

.page-resources-ku11net-app-new-features__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-ku11net-app-new-features__step-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-ku11net-app-new-features__step-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.page-resources-ku11net-app-new-features__step-heading {
    font-size: 1.3em;
    color: #017439;
    margin-bottom: 10px;
}

.page-resources-ku11net-app-new-features__step-item p {
    color: #555555;
}

.page-resources-ku11net-app-new-features__cta-download {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-resources-ku11net-app-new-features__faq {
    background-color: #ffffff;
}

.page-resources-ku11net-app-new-features__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-ku11net-app-new-features__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-ku11net-app-new-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.1em;
    color: #017439;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-ku11net-app-new-features__faq-question:hover {
    background-color: #eaf7ed;
}

.page-resources-ku11net-app-new-features__faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: inherit;
}

.page-resources-ku11net-app-new-features__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    transition: transform 0.3s ease;
}

.page-resources-ku11net-app-new-features__faq-item.active .page-resources-ku11net-app-new-features__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-ku11net-app-new-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #555555;
}

.page-resources-ku11net-app-new-features__faq-item.active .page-resources-ku11net-app-new-features__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-ku11net-app-new-features__faq-answer p {
    margin-bottom: 10px;
}

/* Conclusion Section */
.page-resources-ku11net-app-new-features__conclusion {
    background-color: #017439;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-ku11net-app-new-features__conclusion .page-resources-ku11net-app-new-features__section-title {
    color: #ffffff;
}

.page-resources-ku11net-app-new-features__conclusion p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-ku11net-app-new-features__hero-title {
        font-size: 2.8em;
    }
    .page-resources-ku11net-app-new-features__hero-description {
        font-size: 1.2em;
    }
    .page-resources-ku11net-app-new-features__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* General mobile adjustments */
    .page-resources-ku11net-app-new-features {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-ku11net-app-new-features__container {
        padding: 0 15px;
    }
    .page-resources-ku11net-app-new-features__content-section {
        padding: 40px 0;
    }
    .page-resources-ku11net-app-new-features__hero-section {
        min-height: 500px;
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is applied */
    }
}