/* style/resources-hz88-security-features.css */

/* Biến CSS cho màu sắc và phông chữ */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #00BFFF; /* Deep Sky Blue */
    --dark-text-color: #333333;
    --light-text-color: #FFFFFF;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
    --accent-color: #ff4000; /* Orange for emphasis */
}

.page-resources-hz88-security-features {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.page-resources-hz88-security-features__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-hz88-security-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--light-text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-hz88-security-features__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--light-text-color);
}

.page-resources-hz88-security-features__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-resources-hz88-security-features__button--primary {
    background-color: var(--primary-color);
    color: var(--dark-text-color); /* Dark text for primary button */
    border: 2px solid var(--primary-color);
}

.page-resources-hz88-security-features__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-hz88-security-features__button--secondary {
    background-color: transparent;
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color);
}

.page-resources-hz88-security-features__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-resources-hz88-security-features__intro-section,
.page-resources-hz88-security-features__main-content-section,
.page-resources-hz88-security-features__cta-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-resources-hz88-security-features__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-resources-hz88-security-features__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-hz88-security-features__sub-section-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-resources-hz88-security-features p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--dark-text-color);
}

.page-resources-hz88-security-features__content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.page-resources-hz88-security-features__content-wrapper p {
    flex: 1;
}

.page-resources-hz88-security-features__image-inline {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-resources-hz88-security-features__feature-item {
    background-color: var(--light-text-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.page-resources-hz88-security-features__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-hz88-security-features__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-resources-hz88-security-features__feature-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-hz88-security-features__feature-item p {
    font-size: 1em;
    color: #555555;
}

.page-resources-hz88-security-features__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-resources-hz88-security-features__list li {
    background-color: var(--light-text-color);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--dark-text-color);
}

.page-resources-hz88-security-features__list li strong {
    color: var(--primary-color);
}

.page-resources-hz88-security-features__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-hz88-security-features__cta-section {
    background: var(--background-dark);
    color: var(--light-text-color);
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid var(--primary-color);
}

.page-resources-hz88-security-features__cta-title {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-hz88-security-features__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--light-text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-hz88-security-features__hero-title {
        font-size: 2.8em;
    }
    .page-resources-hz88-security-features__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-hz88-security-features__section-title {
        font-size: 2em;
    }
    .page-resources-hz88-security-features__content-wrapper {
        flex-direction: column;
    }
    .page-resources-hz88-security-features__image-inline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-hz88-security-features__hero-section {
        padding: 80px 0;
    }
    .page-resources-hz88-security-features__hero-title {
        font-size: 2.2em;
    }
    .page-resources-hz88-security-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-hz88-security-features__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-hz88-security-features__intro-section,
    .page-resources-hz88-security-features__main-content-section,
    .page-resources-hz88-security-features__cta-section {
        padding: 40px 0;
    }
    .page-resources-hz88-security-features__section-title {
        font-size: 1.8em;
    }
    .page-resources-hz88-security-features__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-hz88-security-features__cta-title {
        font-size: 2.2em;
    }
    .page-resources-hz88-security-features__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-hz88-security-features__hero-title {
        font-size: 1.8em;
    }
    .page-resources-hz88-security-features__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-hz88-security-features__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-hz88-security-features__section-title {
        font-size: 1.5em;
    }
    .page-resources-hz88-security-features__sub-section-title {
        font-size: 1.4em;
    }
    .page-resources-hz88-security-features p,
    .page-resources-hz88-security-features__list li {
        font-size: 0.95em;
    }
}