/* Services Page Specific Styles */


/* Services Hero Section */

.services-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(29, 78, 216, 0.6)), url('../images/Services_Boardroom.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-white);
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}


/* Mission Statement */

.mission-statement {
    background: var(--primary-dark);
    color: var(--secondary-white);
    padding: 4rem 0;
    text-align: center;
}

.mission-statement h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-statement p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Service Details */

.service-detail {
    background: var(--secondary-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-detail h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium-gray);
}


/* Mobile Responsive for Services Page */

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    .services-hero h1 {
        font-size: 2.2rem;
    }
    .services-hero p {
        font-size: 1.1rem;
    }
    .service-detail {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        background-size: 120%;
        background-position: center 30%;
    }
    .services-hero h1 {
        font-size: 1.8rem;
    }
    .services-hero p {
        font-size: 1rem;
    }
    .service-detail {
        padding: 1.5rem;
    }
}