/* style/resources-security-and-reputation.css */

/* General Styles for the Page Content */
.page-resources-security-and-reputation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Main content area will inherit body background or have specific sections */
}

.page-resources-security-and-reputation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-security-and-reputation__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: #017439; /* Use brand color for hero background */
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-security-and-reputation__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-resources-security-and-reputation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay to make text readable */
    filter: none; /* No CSS filter to change image color */
}

.page-resources-security-and-reputation__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-resources-security-and-reputation__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Register/Login font color for emphasis */
}

.page-resources-security-and-reputation__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources-security-and-reputation__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Section Titles */
.page-resources-security-and-reputation__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Use highlight color for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-resources-security-and-reputation__subsection-title {
    font-size: 1.8em;
    color: #017439; /* Brand color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Content Sections */
.page-resources-security-and-reputation__content-section {
    padding: 60px 0;
    background-color: #1a1a2e; /* Inherit body background for consistency */
    color: #ffffff; /* Light text for dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-security-and-reputation__content-section:nth-child(even) {
    background-color: #1a1a2e; /* Alternate background slightly for visual separation if needed, but keeping consistent with body */
}

.page-resources-security-and-reputation__content-section p {
    margin-bottom: 15px;
    color: #ffffff; /* Ensure paragraph text is light */
}

.page-resources-security-and-reputation__content-section strong {
    color: #FFFF00; /* Highlight important keywords */
}

.page-resources-security-and-reputation__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-resources-security-and-reputation__list li {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Image Blocks within content */
.page-resources-security-and-reputation__image-block {
    text-align: center;
    margin: 40px 0;
}

.page-resources-security-and-reputation__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    filter: none; /* No CSS filter to change image color */
    display: block; /* Ensure image behaves as a block element */
    margin: 0 auto; /* Center image */
}