/* style/blog-unveiling-78be-web-new-features.css */

/* Variables for colors */
:root {
    --primary-color: #11A84E; /* Main Green */
    --secondary-color: #22C768; /* Auxiliary Green */
    --button-gradient-start: #2AD16F;
    --button-gradient-end: #13994A;
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-unveiling-78be-web-new-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page, assuming dark body bg */
    background-color: var(--page-bg); /* Page specific background */
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-unveiling-78be-web-new-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-unveiling-78be-web-new-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above content on desktop */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--deep-green); /* Fallback background */
}

.page-blog-unveiling-78be-web-new-features__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-unveiling-78be-web-new-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.page-blog-unveiling-78be-web-new-features__hero-content {
    position: relative; /* Ensure content is above any potential overlay */
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-blog-unveiling-78be-web-new-features__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    color: var(--gold-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-unveiling-78be-web-new-features__subtitle {
    font-size: 1.15em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-unveiling-78be-web-new-features__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-unveiling-78be-web-new-features__btn-primary,
.page-blog-unveiling-78be-web-new-features__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-unveiling-78be-web-new-features__btn-primary {
    background: var(--button-gradient-start);
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-unveiling-78be-web-new-features__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    filter: brightness(1.1);
}

.page-blog-unveiling-78be-web-new-features__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-unveiling-78be-web-new-features__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--page-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

/* General Section Styling */
.page-blog-unveiling-78be-web-new-features__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-unveiling-78be-web-new-features__section:last-of-type {
    border-bottom: none;
}

.page-blog-unveiling-78be-web-new-features__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-unveiling-78be-web-new-features__paragraph {
    font-size: 1.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-unveiling-78be-web-new-features__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Feature Grid */
.page-blog-unveiling-78be-web-new-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-unveiling-78be-web-new-features__feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
}

.page-blog-unveiling-78be-web-new-features__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-unveiling-78be-web-new-features__feature-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-unveiling-78be-web-new-features__feature-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-unveiling-78be-web-new-features__feature-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    flex-grow: 1; /* Allows description to take available space */
}

/* Technology Section */
.page-blog-unveiling-78be-web-new-features__tech-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-unveiling-78be-web-new-features__tech-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-unveiling-78be-web-new-features__tech-item strong {
    color: var(--gold-color);
}

/* UX Section */
.page-blog-unveiling-78be-web-new-features__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-unveiling-78be-web-new-features__advantage-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: var(--text-main);
}

.page-blog-unveiling-78be-web-new-features__advantage-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-unveiling-78be-web-new-features__advantage-description {
    font-size: 0.9em;
    color: var(--text-secondary);
}

/* Tips Section */
.page-blog-unveiling-78be-web-new-features__tips-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-unveiling-78be-web-new-features__tip-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1.05em;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 45px;
}

.page-blog-unveiling-78be-web-new-features__tip-item::before {
    content: '✓'; /* Checkmark icon */
    color: var(--gold-color);
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-blog-unveiling-78be-web-new-features__tip-item strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-blog-unveiling-78be-web-new-features__faq-list {
    margin-top: 40px;
}

.page-blog-unveiling-78be-web-new-features__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-unveiling-78be-web-new-features__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-unveiling-78be-web-new-features__faq-item summary::-webkit-details-marker {
    display: none; /* Hide for Webkit browsers */
}

.page-blog-unveiling-78be-web-new-features__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-blog-unveiling-78be-web-new-features__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--gold-color);
    margin-left: 15px;
}

.page-blog-unveiling-78be-web-new-features__faq-item[open] .page-blog-unveiling-78be-web-new-features__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-blog-unveiling-78be-web-new-features__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: 1px solid var(--divider-color);
}

.page-blog-unveiling-78be-web-new-features__faq-answer p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-blog-unveiling-78be-web-new-features__faq-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog-unveiling-78be-web-new-features__faq-link:hover {
    color: var(--gold-color);
}

/* Conclusion Section */
.page-blog-unveiling-78be-web-new-features__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-unveiling-78be-web-new-features__hero-image-wrapper {
        max-height: 500px;
    }

    .page-blog-unveiling-78be-web-new-features__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }

    .page-blog-unveiling-78be-web-new-features__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-unveiling-78be-web-new-features {
        font-size: 15px;
    }

    .page-blog-unveiling-78be-web-new-features__hero-section {
        padding-bottom: 40px;
    }
    
    .page-blog-unveiling-78be-web-new-features__hero-image-wrapper {
        max-height: 400px;
    }

    .page-blog-unveiling-78be-web-new-features__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
    }

    .page-blog-unveiling-78be-web-new-features__subtitle {
        font-size: 1em;
    }

    .page-blog-unveiling-78be-web-new-features__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-unveiling-78be-web-new-features__btn-primary,
    .page-blog-unveiling-78be-web-new-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        margin: 0 auto; /* Center buttons */
    }

    .page-blog-unveiling-78be-web-new-features__section {
        padding: 40px 0;
    }

    .page-blog-unveiling-78be-web-new-features__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-unveiling-78be-web-new-features__paragraph {
        font-size: 0.95em;
    }

    .page-blog-unveiling-78be-web-new-features__image {
        margin: 20px auto;
        min-width: 200px !important;
        height: auto !important;
        max-width: 100% !important;
    }

    .page-blog-unveiling-78be-web-new-features__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-unveiling-78be-web-new-features__feature-card {
        padding: 20px;
    }

    .page-blog-unveiling-78be-web-new-features__feature-image {
        height: 200px;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
    }

    .page-blog-unveiling-78be-web-new-features__feature-title {
        font-size: 1.3em;
    }

    .page-blog-unveiling-78be-web-new-features__tech-item,
    .page-blog-unveiling-78be-web-new-features__tip-item {
        font-size: 0.95em;
        padding: 15px 20px 15px 40px;
    }

    .page-blog-unveiling-78be-web-new-features__advantage-card {
        padding: 15px;
    }

    .page-blog-unveiling-78be-web-new-features__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-unveiling-78be-web-new-features__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    /* Images responsiveness */
    .page-blog-unveiling-78be-web-new-features img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-unveiling-78be-web-new-features__section,
    .page-blog-unveiling-78be-web-new-features__card,
    .page-blog-unveiling-78be-web-new-features__container,
    .page-blog-unveiling-78be-web-new-features__hero-section,
    .page-blog-unveiling-78be-web-new-features__feature-card,
    .page-blog-unveiling-78be-web-new-features__advantage-card,
    .page-blog-unveiling-78be-web-new-features__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-unveiling-78be-web-new-features__hero-section {
        padding-top: 10px !important; /* body handles header offset, small padding for aesthetic */
    }

    .page-blog-unveiling-78be-web-new-features__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
}