/* style/app-download-features-intro.css */
.page-app-download-features-intro {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark gray for general text */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background */
}

.page-app-download-features-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-app-download-features-intro__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Primary blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-app-download-features-intro__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-app-download-features-intro__hero .page-app-download-features-intro__container {
    position: relative;
    z-index: 1;
}

.page-app-download-features-intro__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-features-intro__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Lighter white for description */
}

.page-app-download-features-intro__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-features-intro__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-app-download-features-intro__button--primary {
    background-color: #FFD700; /* Gold */
    color: #007BFF; /* Primary blue */
    border: 2px solid #FFD700;
}

.page-app-download-features-intro__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-app-download-features-intro__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-app-download-features-intro__button--secondary:hover {
    background-color: #FFD700;
    color: #007BFF;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-app-download-features-intro__section-title {
    font-size: 2.2em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-app-download-features-intro__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-app-download-features-intro__text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

/* Features Overview */
.page-app-download-features-intro__features-overview {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-app-download-features-intro__feature-item {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-features-intro__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-features-intro__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-app-download-features-intro__feature-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-app-download-features-intro__feature-text {
    font-size: 1em;
    color: #666;
}

/* Detailed Feature Sections */
.page-app-download-features-intro__detailed-feature {
    padding: 80px 0;
}

.page-app-download-features-intro__detailed-feature:nth-of-type(odd) {
    background-color: #e9f7ff; /* Lighter blue for alternating sections */
}

.page-app-download-features-intro__detailed-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-app-download-features-intro__detailed-feature--reverse .page-app-download-features-intro__detailed-content {
    flex-direction: row-reverse;
}

.page-app-download-features-intro__text-content,
.page-app-download-features-intro__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-app-download-features-intro__sub-title {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 25px;
}

.page-app-download-features-intro__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-app-download-features-intro__feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-app-download-features-intro__why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.page-app-download-features-intro__benefit-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.page-app-download-features-intro__benefit-list li {
    background-color: #f0f8ff; /* Light blue */
    padding: 20px;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.page-app-download-features-intro__benefit-icon {
    font-size: 1.5em;
    color: #FFD700; /* Gold checkmark */
    margin-right: 15px;
    line-height: 1;
}

/* Final CTA */
.page-app-download-features-intro__cta-final {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-features-intro__cta-final .page-app-download-features-intro__section-title {
    color: #FFD700;
}
.page-app-download-features-intro__cta-final .page-app-download-features-intro__section-title::after {
    background-color: #fff;
}

.page-app-download-features-intro__cta-final .page-app-download-features-intro__text-center {
    color: #e0e0e0;
}

.page-app-download-features-intro__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Keyword highlighting */
.page-app-download-features-intro .keyword {
    font-weight: bold;
}

/* Keywords in light sections */
.page-app-download-features-intro__features-overview .keyword,
.page-app-download-features-intro__detailed-feature .page-app-download-features-intro__text-content .keyword,
.page-app-download-features-intro__why-choose .keyword {
    color: #0056b3; /* Darker blue for better contrast on light backgrounds */
}

/* Keywords in dark sections (hero, final CTA) */
.page-app-download-features-intro__hero .keyword,
.page-app-download-features-intro__cta-final .keyword {
    color: #FFD700; /* Gold on dark blue for emphasis */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-features-intro__title {
        font-size: 2.2em;
    }
    .page-app-download-features-intro__section-title {
        font-size: 1.8em;
    }
    .page-app-download-features-intro__detailed-content {
        flex-direction: column;
        text-align: center;
    }
    .page-app-download-features-intro__detailed-feature--reverse .page-app-download-features-intro__detailed-content {
        flex-direction: column; /* Reset for mobile */
    }
    .page-app-download-features-intro__text-content,
    .page-app-download-features-intro__image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-app-download-features-intro__hero,
    .page-app-download-features-intro__detailed-feature,
    .page-app-download-features-intro__why-choose,
    .page-app-download-features-intro__cta-final {
        padding: 50px 0;
    }
    .page-app-download-features-intro__title {
        font-size: 1.8em;
    }
    .page-app-download-features-intro__description {
        font-size: 1em;
    }
    .page-app-download-features-intro__section-title {
        font-size: 1.6em;
    }
    .page-app-download-features-intro__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-features-intro__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-app-download-features-intro__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-features-intro__benefit-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-app-download-features-intro__title {
        font-size: 1.5em;
    }
    .page-app-download-features-intro__section-title {
        font-size: 1.4em;
    }
    .page-app-download-features-intro__sub-title {
        font-size: 1.6em;
    }
}