.page-blog-6fff-app-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-blog-6fff-app-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-6fff-app-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as per instructions */
    background-color: #08160F; /* Background */
    overflow: hidden;
}

.page-blog-6fff-app-features__hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px; /* Display width */
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.page-blog-6fff-app-features__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
    padding: 20px;
    background: rgba(17, 39, 27, 0.8); /* Card BG with transparency for subtle overlay effect */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: -80px; /* Overlap image slightly for visual interest, without text overlaying */
}


.page-blog-6fff-app-features__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-6fff-app-features__hero-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons Group */
.page-blog-6fff-app-features__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    justify-content: center;
}

/* Primary Button */
.page-blog-6fff-app-features__btn-primary,
.page-blog-6fff-app-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    min-width: 180px;
}

.page-blog-6fff-app-features__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-6fff-app-features__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Secondary Button */
.page-blog-6fff-app-features__btn-secondary {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-6fff-app-features__btn-secondary:hover {
    background-color: #2E7A4E; /* Border */
    color: #F2FFF6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-blog-6fff-app-features__section-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3); /* Glow */
}

/* Text Blocks */
.page-blog-6fff-app-features__text-block {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

/* Feature Items */
.page-blog-6fff-app-features__features-overview {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-blog-6fff-app-features__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #1E3A2A; /* Divider */
}

.page-blog-6fff-app-features__feature-title {
    font-size: 1.8rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(87, 227, 141, 0.2); /* Glow */
}

.page-blog-6fff-app-features__feature-image {
    width: 100%;
    max-width: 600px; /* Recommended image size for content */
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
}

.page-blog-6fff-app-features__feature-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* Dark Section styling */
.page-blog-6fff-app-features__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 60px 0;
    color: #F2FFF6;
}

/* Promotion List */
.page-blog-6fff-app-features__promotion-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-6fff-app-features__promotion-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-6fff-app-features__promotion-item strong {
    color: #F2C14E; /* Gold */
}

/* Download Steps */
.page-blog-6fff-app-features__download-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    counter-reset: step-counter;
}

.page-blog-6fff-app-features__step-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 60px;
    text-align: justify;
}

.page-blog-6fff-app-features__step-item::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #11A84E; /* Primary */
    color: #F2FFF6; /* Text Main */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.page-blog-6fff-app-features__step-item strong {
    color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-blog-6fff-app-features__faq-section {
    padding: 60px 0;
}

.page-blog-6fff-app-features__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-6fff-app-features__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}