.page-blog-hot789-security {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
}

.page-blog-hot789-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-hot789-security__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
}

.page-blog-hot789-security__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px; /* Space between image and text */
}

.page-blog-hot789-security__hero-content {
    padding: 0 20px;
    max-width: 900px;
}

.page-blog-hot789-security__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Using clamp for H1 font-size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF1E8; /* Main text color */
    letter-spacing: -0.5px;
}

.page-blog-hot789-security__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-blog-hot789-security__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-hot789-security__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 176, 74, 0.4);
}

.page-blog-hot789-security__cta-button--secondary {
    background: #7E0D0D; /* Deep Red */
    border: 1px solid #6A1E1E; /* Border color */
}

.page-blog-hot789-security__cta-button--secondary:hover {
    box-shadow: 0 8px 15px rgba(126, 13, 13, 0.4);
}

.page-blog-hot789-security__intro-section,
.page-blog-hot789-security__features-section,
.page-blog-hot789-security__commitment-section,
.page-blog-hot789-security__faq-section {
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-blog-hot789-security__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 20px;
}

.page-blog-hot789-security__section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #FFF1E8;
}

.page-blog-hot789-security__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-hot789-security__feature-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-hot789-security__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-hot789-security__feature-icon {
    width: 100%; /* Ensure images are not small icons */
    height: auto;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    max-width: 400px; /* Example max-width for feature icons */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-blog-hot789-security__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-blog-hot789-security__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-blog-hot789-security__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hot789-security__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-hot789-security__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    cursor: pointer;
    margin: 0;
    position: relative;
    padding-right: 30px;
}

.page-blog-hot789-security__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFF1E8;
    transition: transform 0.3s ease;
}

.page-blog-hot789-security__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-blog-hot789-security__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
    margin-top: 15px;
    display: none; /* Hidden by default */
}

.page-blog-hot789-security__faq-question.active + .page-blog-hot789-security__faq-answer {
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-hot789-security__container {
        padding: 15px;
    }

    .page-blog-hot789-security__hero-section {
        padding-top: 8px;
        margin-bottom: 30px;
    }

    .page-blog-hot789-security__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-hot789-security__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .page-blog-hot789-security__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-blog-hot789-security__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .page-blog-hot789-security__section-description {
        font-size: 0.95rem;
    }

    .page-blog-hot789-security__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Enforce image responsiveness in content area for mobile */
    .page-blog-hot789-security img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule to prevent content images from being too small on mobile, if a specific width/height is set */
    .page-blog-hot789-security__feature-icon {
        width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum on mobile */
        min-height: 200px;
    }
}

/* Ensure content area images are never smaller than 200px display size */
.page-blog-hot789-security img:not(.page-blog-hot789-security__hero-image) {
    width: 100%; /* Default to 100% of container */
    height: auto;
    min-width: 200px; /* Minimum display width */
    min-height: 200px; /* Minimum display height (adjust based on aspect ratio) */
    object-fit: cover;
}