/* style/index-security-and-fairness.css */

.page-index-security-and-fairness {
    font-family: 'Arial', sans-serif;
    color: #e5d4b3; /* Light text for dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-index-security-and-fairness__hero-section {
    position: relative;
    background-color: #1A2B4C; /* Main color */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.page-index-security-and-fairness__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-index-security-and-fairness__hero-section .page-index-security-and-fairness__container {
    position: relative;
    z-index: 1;
}

.page-index-security-and-fairness__hero-title {
    font-size: 3.5em;
    color: #F0B90B; /* Accent color for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-and-fairness__hero-subtitle {
    font-size: 1.4em;
    color: #e5d4b3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Content Section */
.page-index-security-and-fairness__content-section {
    padding: 60px 0;
}

.page-index-security-and-fairness__bg--dark {
    background-color: #1A2B4C;
    color: #e5d4b3;
}

.page-index-security-and-fairness__bg--light {
    background-color: #2D3E5B; /* Slightly lighter shade for contrast */
    color: #e5d4b3;
}

.page-index-security-and-fairness__bg--accent {
    background-color: #F0B90B; /* Accent background for CTA */
    color: #1A2B4C; /* Dark text on accent background */
}

.page-index-security-and-fairness__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-security-and-fairness__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e5d4b3;
    border-radius: 2px;
}

.page-index-security-and-fairness__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-security-and-fairness__text--dark {
    color: #1A2B4C; /* Dark text for accent background */
}

/* Feature Grid */
.page-index-security-and-fairness__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-security-and-fairness__feature-item {
    background-color: #2D3E5B; /* Slightly lighter dark for feature boxes */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-security-and-fairness__bg--light .page-index-security-and-fairness__feature-item {
    background-color: #1A2B4C; /* Darker background for feature items in light section */
}

.page-index-security-and-fairness__feature-item:hover {
    transform: translateY(-10px);
    background-color: #3C4F71; /* Lighter on hover */
}

.page-index-security-and-fairness__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(240, 185, 11, 0.5)); /* Gold shadow for icons */
}

.page-index-security-and-fairness__feature-title {
    font-size: 1.5em;
    color: #F0B90B; /* Accent color for feature titles */
    margin-bottom: 15px;
}

.page-index-security-and-fairness__feature-text {
    color: #e5d4b3;
    font-size: 1em;
}

/* Call to Action Buttons */
.page-index-security-and-fairness__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-security-and-fairness__btn--primary {
    background-color: #F0B90B; /* Accent color */
    color: #1A2B4C; /* Dark text on accent */
    border: 2px solid #F0B90B;
}

.page-index-security-and-fairness__btn--primary:hover {
    background-color: #e5d4b3;
    color: #1A2B4C;
    border-color: #e5d4b3;
}

.page-index-security-and-fairness__btn--secondary {
    background-color: transparent;
    color: #F0B90B; /* Accent color text */
    border: 2px solid #F0B90B;
}

.page-index-security-and-fairness__btn--secondary:hover {
    background-color: #F0B90B;
    color: #1A2B4C;
}

.page-index-security-and-fairness__btn--dark {
    background-color: #1A2B4C; /* Dark background for accent section */
    color: #F0B90B; /* Accent text */
    border: 2px solid #1A2B4C;
}

.page-index-security-and-fairness__btn--dark:hover {
    background-color: #3C4F71;
    border-color: #3C4F71;
    color: #F0B90B;
}

.page-index-security-and-fairness__btn--outline-dark {
    background-color: transparent;
    color: #1A2B4C; /* Dark text */
    border: 2px solid #1A2B4C;
}

.page-index-security-and-fairness__btn--outline-dark:hover {
    background-color: #1A2B4C;
    color: #F0B90B;
}

.page-index-security-and-fairness__cta-buttons {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-index-security-and-fairness__cta-section {
    position: relative;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.page-index-security-and-fairness__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-index-security-and-fairness__cta-section .page-index-security-and-fairness__container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-security-and-fairness__hero-title {
        font-size: 2.5em;
    }

    .page-index-security-and-fairness__hero-subtitle {
        font-size: 1.2em;
    }

    .page-index-security-and-fairness__section-title {
        font-size: 2em;
    }

    .page-index-security-and-fairness__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-index-security-and-fairness__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-security-and-fairness__hero-title {
        font-size: 2em;
    }

    .page-index-security-and-fairness__hero-subtitle {
        font-size: 1em;
    }

    .page-index-security-and-fairness__section-title {
        font-size: 1.8em;
    }

    .page-index-security-and-fairness__btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}