/* ================================================= */
/* 0. GLOBAL STYLES */
/* ================================================= */
/* Assume standard global resets and body styles are applied */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9fafb;
}

/* General Section Padding (Adjusted for responsiveness) */
.overview, .services-section, .strategic-advantage, .business-responsibility {
    padding: 60px 20px;
}


/* ================================================= */
/* 1. Hero Section */
/* ================================================= */
.contract-hero {
    background: #ffffff;
    padding: 0;
}

.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px; /* Base desktop height */
}

.hero-text {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem; /* Base desktop size */
    color: #0F766E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ================================================= */
/* 2. Overview Section */
/* ================================================= */
.overview {
    background: #ffffff;
    padding: 80px 20px 40px;
}
.overview-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.overview-text h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #0F766E;
    margin-bottom: 20px;
}
.overview-text p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* ================================================= */
/* 3. Services Section (Left Text/Image, Right Grid) */
/* ================================================= */
.services-section {
    background-size: cover;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.services-left {
    flex: 1;
    text-align: left;
}

.services-left h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 10px;
}

.services-left h2 {
    font-size: 2rem;
    color: #0F766E;
    margin-bottom: 20px;
}

.services-truck {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-top: 20px;
}

.services-right {
    flex: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Base 2 columns */
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 28px;
    color: #0F766E;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* ================================================= */
/* 4. Strategic Advantage Section */
/* ================================================= */
.strategic-advantage {
    background: #ffffff;
}

.sa-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sa-text {
    flex: 1;
}

.sa-text h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #0f766e;
    margin-bottom: 20px;
}

.sa-text p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sa-image {
    flex: 1;
    text-align: right;
}

.sa-image img {
    width: 100%;
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ================================================= */
/* 5. Business Responsibility (CTA) Section */
/* ================================================= */
.business-responsibility {
    background: #f9fafb;
    text-align: center;
}
.br-container {
    max-width: 900px;
    margin: 0 auto;
}
.br-container h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #0f766e;
    margin-bottom: 20px;
}
.br-container p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.br-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #0f766e;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.br-btn:hover {
    background: #0c5e55;
}

/* ================================================= */
/* RESPONSIVE MEDIA QUERIES */
/* ================================================= */

/* Tablet and Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    /* General Padding */
    .overview, .services-section, .strategic-advantage, .business-responsibility {
        padding: 40px 15px;
    }

    /* 1. Hero Section: Stack columns */
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }
    .hero-text {
        padding: 40px 20px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-image img {
        height: 300px;
    }

    /* 3. Services Section: Stack left content and right grid */
    .services-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .services-left, .services-right {
        max-width: 100%;
        width: 100%;
    }
    .services-left h2, .services-left h4 {
        text-align: center;
    }

    /* 3. Services Grid: Maintain 2 columns, but adjust gap */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 4. Strategic Advantage: Stack columns */
    .sa-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .sa-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .sa-text p {
        text-align: center;
        font-size: 1rem;
    }
    .sa-image {
        order: -1; /* Place image above text */
        text-align: center;
    }
    .sa-image img {
        height: 250px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* General Padding */
    .overview, .services-section, .strategic-advantage, .business-responsibility {
        padding: 30px 10px;
    }

    /* 1. Hero */
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }
    .hero-image img {
        height: 200px;
    }

    /* 2. Overview */
    .overview-text h2 {
        font-size: 1.8rem;
    }
    .overview-text p {
        font-size: 0.95rem;
    }

    /* 3. Services Grid: Single column stack */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .services-left h2 {
        font-size: 1.6rem;
    }

    /* 4. Strategic Advantage */
    .sa-text h2 {
        font-size: 1.6rem;
    }
    .sa-image img {
        height: 200px;
    }

    /* 5. Business Responsibility */
    .br-container h2 {
        font-size: 1.8rem;
    }
    .br-container p {
        font-size: 0.95rem;
    }
    .br-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}