/* style/index-caxeng-security-system.css */
.page-index-caxeng-security-system {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light backgrounds */
    line-height: 1.6;
}

.page-index-caxeng-security-system__brand-link {
    color: #00BFFF; /* Auxiliary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-index-caxeng-security-system__brand-link:hover {
    color: #0086b3;
    text-decoration: underline;
}

.page-index-caxeng-security-system__hero {
    background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%); /* Gold to Blue gradient */
    color: #FFFFFF; /* White text for gradient background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-index-caxeng-security-system__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-index-caxeng-security-system__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtly blend background image */
    z-index: 1;
}

.page-index-caxeng-security-system__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF; /* White text for title on hero */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index-caxeng-security-system__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #EEEEEE;
}

.page-index-caxeng-security-system__subtitle .highlight {
    color: #FFD700; /* Gold highlight for keywords */
    font-weight: bold;
}

.page-index-caxeng-security-system__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    cursor: pointer;
}

.page-index-caxeng-security-system__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #333333; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-index-caxeng-security-system__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

.page-index-caxeng-security-system__btn--secondary {
    background-color: transparent;
    color: #FFFFFF; /* White text for transparent button on hero */
    border: 2px solid #FFFFFF;
}

.page-index-caxeng-security-system__btn--secondary:hover {
    background-color: rgba(255,255,255,0.2);
    color: #FFD700;
}

.page-index-caxeng-security-system__section {
    padding: 60px 0;
}

.page-index-caxeng-security-system__section--data-security {
    background-color: #f9f9f9;
}

.page-index-caxeng-security-system__section--fund-security {
    background-color: #e0f2f7; /* Light blue background */
    color: #333333;
}

.page-index-caxeng-security-system__section--fair-play {
    background-color: #f9f9f9;
}

.page-index-caxeng-security-system__section--responsible-gaming {
    background-color: #e0f2f7; /* Light blue background */
    color: #333333;
}

.page-index-caxeng-security-system__section--customer-support {
    background-color: #f9f9f9;
}

.page-index-caxeng-security-system__section--cta {
    background-color: #00BFFF; /* Auxiliary color for CTA section */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-index-caxeng-security-system__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-caxeng-security-system__heading {
    font-size: 2.5em;
    color: #00BFFF; /* Auxiliary color for main headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-caxeng-security-system__section--fund-security .page-index-caxeng-security-system__heading,
.page-index-caxeng-security-system__section--responsible-gaming .page-index-caxeng-security-system__heading {
    color: #333333; /* Darker text for headings on light blue background */
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__heading {
    color: #FFD700; /* Gold heading on blue background */
}

.page-index-caxeng-security-system__sub-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-caxeng-security-system__section--fund-security .page-index-caxeng-security-system__sub-heading,
.page-index-caxeng-security-system__section--responsible-gaming .page-index-caxeng-security-system__sub-heading {
    color: #0086b3; /* Darker blue for subheadings on light blue background */
}

.page-index-caxeng-security-system__text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-index-caxeng-security-system__text .highlight {
    color: #00BFFF; /* Auxiliary color highlight in text */
    font-weight: bold;
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__text .highlight {
    color: #FFD700; /* Gold highlight in CTA text */
}

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

.page-index-caxeng-security-system__feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-index-caxeng-security-system__feature-card:hover {
    transform: translateY(-5px);
}

.page-index-caxeng-security-system__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-caxeng-security-system__feature-title {
    font-size: 1.5em;
    color: #00BFFF; /* Auxiliary color for feature titles */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-caxeng-security-system__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-index-caxeng-security-system__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-index-caxeng-security-system__content-col {
    flex: 1;
    min-width: 300px;
}

.page-index-caxeng-security-system__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-caxeng-security-system__image--left {
    margin-right: 20px;
}

.page-index-caxeng-security-system__image--right {
    margin-left: 20px;
}

.page-index-caxeng-security-system__content-row--reverse {
    flex-direction: row-reverse;
}

.page-index-caxeng-security-system__cta-buttons {
    margin-top: 40px;
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__btn--primary {
    background-color: #FFD700; /* Gold button on blue CTA */
    color: #333333;
    border-color: #FFD700;
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-index-caxeng-security-system__section--cta .page-index-caxeng-security-system__btn--secondary:hover {
    background-color: rgba(255,255,255,0.2);
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-caxeng-security-system__title {
        font-size: 2.8em;
    }
    .page-index-caxeng-security-system__subtitle {
        font-size: 1.3em;
    }
    .page-index-caxeng-security-system__heading {
        font-size: 2em;
    }
    .page-index-caxeng-security-system__sub-heading {
        font-size: 1.6em;
    }
    .page-index-caxeng-security-system__content-row {
        flex-direction: column;
    }
    .page-index-caxeng-security-system__content-row--reverse {
        flex-direction: column-reverse;
    }
    .page-index-caxeng-security-system__image--left,
    .page-index-caxeng-security-system__image--right {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 768px) {
    .page-index-caxeng-security-system__hero {
        padding: 60px 15px;
    }
    .page-index-caxeng-security-system__title {
        font-size: 2.2em;
    }
    .page-index-caxeng-security-system__subtitle {
        font-size: 1.1em;
    }
    .page-index-caxeng-security-system__heading {
        font-size: 1.8em;
    }
    .page-index-caxeng-security-system__sub-heading {
        font-size: 1.4em;
    }
    .page-index-caxeng-security-system__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-caxeng-security-system__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-caxeng-security-system__title {
        font-size: 1.8em;
    }
    .page-index-caxeng-security-system__subtitle {
        font-size: 1em;
    }
    .page-index-caxeng-security-system__heading {
        font-size: 1.5em;
    }
    .page-index-caxeng-security-system__sub-heading {
        font-size: 1.2em;
    }
    .page-index-caxeng-security-system__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}