.page-agent-success-stories {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Matches shared.css --secondary-color */
}

/* Hero Section */
.page-agent-success-stories__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Text on hero image should be white */
    text-align: center;
    overflow: hidden; /* For image */
    min-height: 600px;
    padding-bottom: 40px;
}

.page-agent-success-stories__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-agent-success-stories__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text to ensure contrast */
    border-radius: 8px;
}

.page-agent-success-stories__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
}}