* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-hero {
    padding: 180px 5% 100px;
    background: linear-gradient(rgba(5, 32, 36, 0.9), rgba(7, 46, 51, 0.85)),
        url('./images/aboutbg.png') center/cover no-repeat fixed;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    font-weight: 600;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0f2f1;
    max-width: 700px;
    margin: 0 auto;
}

.overview-section {
    padding: 80px 5%;
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: auto;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.overview-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
}

.icon-wrap {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(7, 46, 51, 0.1);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.overview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.overview-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}


.deep-dive {
    padding: 100px 5%;
    overflow: hidden;
}

.deep-dive.alt-bg {
    background-color: var(--bg-gray);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: auto;
}

.text-col .section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.text-col h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-col p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.img-col img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.img-col:hover img {
    transform: scale(1.02);
}

.services-cta {
    padding: 100px 5%;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cfe6ea;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn.secondary.white {
    border-color: white;
    color: white;
}

.btn.secondary.white:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .split-layout.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .text-col h2 {
        font-size: 2rem;
    }

    .check-list {
        text-align: left;
        display: inline-block;
    }

    .overview-section {
        margin-top: 0;
        padding-top: 50px;
    }
}