/* Benefits Administration Page Styles */

/* Global Styles */
body {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: #FFFFFF;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000000;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.cta-button:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

/* Challenge Section */
.challenge-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.challenge-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
}

.challenge-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.challenge-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.challenge-item p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #808080;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #000000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.service-card p {
    color: #808080;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #000000;
    font-weight: 500;
    border-bottom: 1px solid #808080;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Financial Section */
.financial-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.financial-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.financial-text {
    flex: 1;
}

.financial-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.financial-features {
    display: grid;
    gap: 1.5rem;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

.financial-image {
    flex: 1;
    text-align: center;
}

.finance-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Technology Section */
.technology-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-feature {
    padding: 2rem;
    text-align: center;
    border: 1px solid #808080;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    border-color: #000000;
    transform: translateY(-5px);
}

.tech-feature h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.tech-feature p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

/* Outcomes Section */
.outcomes-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.outcome-category h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
    text-align: center;
}

.outcome-list {
    display: grid;
    gap: 1.5rem;
}

.outcome-item {
    padding: 1.5rem;
    border-left: 4px solid #000000;
    background-color: #FFFFFF;
}

.outcome-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.outcome-item p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

/* Value Section */
.value-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.value-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.value-points {
    display: grid;
    gap: 1.5rem;
}

.value-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.value-point p {
    color: #808080;
    font-size: 1rem;
    line-height: 1.6;
}

.value-image {
    flex: 1;
    text-align: center;
}

.value-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #808080 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.cta-content p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.cta-button.primary:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button.secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 500px;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .financial-content,
    .value-content {
        flex-direction: column;
        text-align: center;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .challenge-item,
    .tech-feature {
        padding: 1.5rem;
    }
}