.page-blog-nh888-security-measures {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-nh888-security-measures__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #100224; /* Dark background for hero */
}

.page-blog-nh888-security-measures__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Adjust aspect ratio as needed */
}

.page-blog-nh888-security-measures__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: -80px; /* Pull content up slightly over the image, but ensure text is not *on* the image. */
    position: relative; /* For z-index to work if needed, though best to avoid overlaying */
    z-index: 1; /* Ensure content is above image if there's any overlap due to negative margin */
    background-color: #100224; /* Ensure background to avoid text being invisible if pulled over image */
    padding-bottom: 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.page-blog-nh888-security-measures__main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* H1 font size with clamp */
    font-weight: bold;
    color: #F2C14E; /* Primary color for H1 */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-blog-nh888-security-measures__hero-description {
    font-size: 1.1rem;
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-blog-nh888-security-measures__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text on bright button */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
    font-size: 1rem;
}

.page-blog-nh888-security-measures__cta-button:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%); /* Slightly inverted for hover */
}

.page-blog-nh888-security-measures__section {
    padding: 40px 0;
    background-color: #0A0A0A;
    border-bottom: 1px solid #3A2A12; /* Border color for sections */
}

.page-blog-nh888-security-measures__section:last-of-type {
    border-bottom: none;
}

.page-blog-nh888-security-measures__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-nh888-security-measures__section-title {
    font-size: 2rem;
    color: #F2C14E; /* Primary color for H2 */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-nh888-security-measures__paragraph {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-nh888-security-measures__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min-size for images */
    min-height: 200px; /* Enforce min-size for images */
}

.page-blog-nh888-security-measures__text-link {
    color: #FFD36B; /* Secondary color for text links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-nh888-security-measures__text-link:hover {
    color: #F2C14E; /* Primary color on hover */
}

.page-blog-nh888-security-measures__cta-button--bottom {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-nh888-security-measures__hero-image {
        aspect-ratio: 4/3; /* Adjust for mobile */
    }

    .page-blog-nh888-security-measures__hero-content {
        margin-top: -40px; /* Reduce negative margin for mobile */
        padding-bottom: 20px;
    }

    .page-blog-nh888-security-measures__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-nh888-security-measures__hero-description {
        font-size: 1rem;
    }

    .page-blog-nh888-security-measures__section-title {
        font-size: 1.7rem;
    }

    .page-blog-nh888-security-measures__paragraph {
        font-size: 0.95rem;
    }

    /* Important: Ensure all images within main content are responsive and don't overflow */
    .page-blog-nh888-security-measures__container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-nh888-security-measures__hero-content {
        padding: 15px;
    }
    .page-blog-nh888-security-measures__cta-button {
        padding: 10px 20px;
        min-width: unset;
        width: 100%; /* Make buttons full width on small screens */
    }
    .page-blog-nh888-security-measures__section {
        padding: 30px 0;
    }
    .page-blog-nh888-security-measures__section-title {
        font-size: 1.5rem;
    }
}

/* Ensure image CSS width/height are not smaller than 200px */
.page-blog-nh888-security-measures img:not(.page-blog-nh888-security-measures__hero-image) {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow natural width or max-width */
    height: auto;
}

/* Specific rule for content images to ensure they are not shrunk below 200px by accident */
.page-blog-nh888-security-measures__container .page-blog-nh888-security-measures__image {
    width: 100%; /* This will ensure it takes full width of container */
    max-width: 800px; /* But not wider than its intended design width */
    height: auto;
    min-width: 200px; /* Explicitly ensure min-width */
    min-height: 200px; /* Explicitly ensure min-height */
}
/* For mobile, ensure content images don't overflow */
@media (max-width: 768px) {
    .page-blog-nh888-security-measures__container .page-blog-nh888-security-measures__image {
        max-width: 100%; /* Override max-width for smaller screens */
        height: auto;
    }
}