/* --- Services Page Specific Styles --- */

/* Hero Section - Services Specific */
.services-hero {
    height: 45vh;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(50%); /* Darken for text readability */
    z-index: 1;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero .hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: white;
}

.services-hero .hero-content p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
}

/* Project Focus Section */
.project-focus-section {
    padding: 60px 0;
    background-color: #fff; /* White background */
    text-align: center;
}

.project-focus-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.project-focus-section .intro-paragraph {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.focus-area {
    background-color: var(--light-bg);
    padding: 40px;
    margin-bottom: 30px; /* Space between focus areas */
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    text-align: left; /* Align text left within the block */
    display: flex;
    align-items: flex-start; /* Align content to the top */
    gap: 25px; /* Space between icon and text */
}

.focus-area:last-child {
    margin-bottom: 0;
}

.focus-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-top: 5px; /* Align icon vertically */
}

.focus-area h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--dark-text);
    text-align: left; /* Ensure heading is left aligned */
}

.focus-area p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    text-align: left; /* Ensure paragraph is left aligned */
}

.focus-area p strong {
    color: var(--primary-color);
    font-weight: bold;
}

/* Our Approach Section */
.our-approach-section {
    padding: 70px 0;
    background-color: #f8f9fa; /* Slightly different background to distinguish */
}

.our-approach-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.our-approach-section p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.approach-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 20px auto; /* Center the list */
    text-align: left;
}

.approach-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
    padding-left: 35px; /* Space for icon */
    position: relative;
}

.approach-list li i {
    position: absolute;
    left: 0;
    top: 2px; /* Adjust vertical alignment */
    color: var(--primary-color);
    font-size: 1.1em;
    margin-right: 10px;
}


/* Call to Action Section */
.services-cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
}

.services-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.services-cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.services-cta-section .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}


/* --- Responsive Adjustments for Services Page --- */
@media (max-width: 767.98px) {
    .services-hero {
        height: 35vh;
    }
    .services-hero .hero-content h1 {
        font-size: 2.3em;
    }
    .services-hero .hero-content p {
        font-size: 1.1em;
    }

    .project-focus-section h2 {
        font-size: 2em;
    }

    .focus-area {
        flex-direction: column; /* Stack icon and text */
        text-align: center; /* Center align when stacked */
        align-items: center;
    }
    .focus-icon {
        margin-top: 0; /* Reset margin */
        margin-bottom: 15px; /* Add space below icon */
        font-size: 2.8em;
    }
    .focus-area h3, .focus-area p {
        text-align: center; /* Center text when stacked */
    }

    .our-approach-section h2 {
        font-size: 2em;
    }
    .approach-list {
        text-align: center; /* Center list items too */
    }
    .approach-list li {
        padding-left: 0; /* No padding needed when centered */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
     .approach-list li i {
        position: static; /* Remove absolute positioning */
        margin-bottom: 5px; /* Space between icon and text */
    }

    .services-cta-section h2 {
        font-size: 2em;
    }
}