.page-blog-hello88-security-features {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-blog-hello88-security-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-hello88-security-features__hero-section {
    position: relative;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    background-color: #2F6BFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-hello88-security-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
    margin-bottom: 20px;
}

.page-blog-hello88-security-features__hero-content {
    padding: 0 20px 40px;
    max-width: 900px;
    text-align: center;
}

.page-blog-hello88-security-features__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hello88-security-features__description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: #E0E7F5;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hello88-security-features__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-hello88-security-features__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-security-features__content-section {
    padding: 40px 0;
}

.page-blog-hello88-security-features__section-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em);
    color: #1F2D3D;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.page-blog-hello88-security-features__paragraph {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D;
    text-align: justify;
}

.page-blog-hello88-security-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-hello88-security-features__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-blog-hello88-security-features__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-hello88-security-features__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-hello88-security-features__feature-title {
    font-size: 1.4em;
    color: #2F6BFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-hello88-security-features__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-blog-hello88-security-features__privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-hello88-security-features__privacy-item {
    background-color: #FFFFFF;
    border-left: 5px solid #2F6BFF;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-blog-hello88-security-features__privacy-item strong {
    color: #000000;
}

.page-blog-hello88-security-features__link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog-hello88-security-features__link:hover {
    color: #6FA3FF;
    text-decoration: underline;
}

.page-blog-hello88-security-features__cta-button--bottom {
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-hello88-security-features__container {
        padding: 15px;
    }

    .page-blog-hello88-security-features__hero-content {
        padding: 0 15px 30px;
    }

    .page-blog-hello88-security-features__main-title {
        font-size: 2em;
    }

    .page-blog-hello88-security-features__description {
        font-size: 1em;
    }

    .page-blog-hello88-security-features__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-hello88-security-features__paragraph,
    .page-blog-hello88-security-features__feature-description,
    .page-blog-hello88-security-features__privacy-item {
        font-size: 0.95em;
    }

    .page-blog-hello88-security-features__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hello88-security-features__feature-icon {
        max-width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .page-blog-hello88-security-features__hero-image {
        max-height: 300px;
    }

    /* Ensure all images in content area are responsive */
    .page-blog-hello88-security-features__content-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-hello88-security-features__main-title {
        font-size: 1.8em;
    }

    .page-blog-hello88-security-features__section-title {
        font-size: 1.6em;
    }

    .page-blog-hello88-security-features__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}