/* style/resources-new88-online-security-features.css */

:root {
    --page-primary-color: #0A2342;
    --page-secondary-color: #FFD700;
    --page-text-color-light: #F0F0F0;
    --page-text-color-dark: #1A1A1A;
    --page-background-light: #FFFFFF;
    --page-background-dark: #0A2342;
}

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

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

/* Hero Section */
.page-resources-new88-online-security-features__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1A3A6A 100%);
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-new88-online-security-features__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,security_pattern,digital_grid]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-new88-online-security-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    color: var(--page-text-color-light);
}

.page-resources-new88-online-security-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: var(--page-text-color-light);
}

.page-resources-new88-online-security-features__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-resources-new88-online-security-features__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

/* Content Section */
.page-resources-new88-online-security-features__content-section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-resources-new88-online-security-features__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-new88-online-security-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    border-radius: 2px;
}

.page-resources-new88-online-security-features__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--page-text-color-dark);
}

.page-resources-new88-online-security-features__image-full-width {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-resources-new88-online-security-features__feature-item {
    background-color: #f9f9f9;
    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(--page-secondary-color);
}

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

.page-resources-new88-online-security-features__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-resources-new88-online-security-features__feature-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-new88-online-security-features__feature-item p {
    font-size: 1em;
    color: var(--page-text-color-dark);
    text-align: justify;
}

.page-resources-new88-online-security-features__bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px 0;
}

.page-resources-new88-online-security-features__bullet-list li {
    background-color: #f0f4f8;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-secondary-color);
    border-radius: 8px;
    font-size: 1.05em;
    color: var(--page-text-color-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-new88-online-security-features__bullet-list li strong {
    color: var(--page-primary-color);
}

.page-resources-new88-online-security-features__cta-group {
    text-align: center;
    margin-top: 60px;
    background-color: var(--page-primary-color);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--page-text-color-light);
}

.page-resources-new88-online-security-features__cta-image {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.page-resources-new88-online-security-features__cta-text {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: bold;
    color: var(--page-text-color-light);
}

.page-resources-new88-online-security-features__cta-button--secondary {
    background-color: transparent;
    border: 2px solid var(--page-secondary-color);
    color: var(--page-secondary-color);
    margin-left: 20px;
}

.page-resources-new88-online-security-features__cta-button--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-resources-new88-online-security-features .highlight {
    color: var(--page-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-new88-online-security-features__hero-title {
        font-size: 2.5em;
    }
    .page-resources-new88-online-security-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-new88-online-security-features__section-title {
        font-size: 2em;
    }
    .page-resources-new88-online-security-features__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-resources-new88-online-security-features__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-resources-new88-online-security-features__cta-group a {
        display: block;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-new88-online-security-features__hero-section {
        padding: 80px 0;
    }
    .page-resources-new88-online-security-features__hero-title {
        font-size: 2em;
    }
    .page-resources-new88-online-security-features__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-new88-online-security-features__section-title {
        font-size: 1.8em;
    }
    .page-resources-new88-online-security-features__text-block {
        font-size: 0.95em;
    }
    .page-resources-new88-online-security-features__feature-item {
        padding: 25px;
    }
    .page-resources-new88-online-security-features__feature-title {
        font-size: 1.4em;
    }
    .page-resources-new88-online-security-features__cta-group {
        padding: 40px;
    }
    .page-resources-new88-online-security-features__cta-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-new88-online-security-features__hero-section {
        padding: 60px 0;
    }
    .page-resources-new88-online-security-features__hero-title {
        font-size: 1.8em;
    }
    .page-resources-new88-online-security-features__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-new88-online-security-features__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-new88-online-security-features__section-title {
        font-size: 1.6em;
    }
    .page-resources-new88-online-security-features__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-new88-online-security-features__cta-group {
        padding: 30px;
    }
    .page-resources-new88-online-security-features__cta-image {
        width: 100px;
    }
    .page-resources-new88-online-security-features__cta-text {
        font-size: 1em;
    }
}