/* Service Intro Section - Typography & Spacing System 
   Matches Contact Intro Section EXACTLY */

/* Reset parent section padding if needed to let the intro handle its own spacing 
   (Optional: if the parent has padding, this inner div might need negative margins or we style the parent)
   However, strictly following "Update ONLY the service intro section styling". 
   We assume .services-header-top acts as the intro container. */

.services-header-top {
    text-align: center;
    padding: 60px 20px;
    background-color: #edf3f1;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    /* Removing previous 50px margin to match contact flow */
    width: 100%;
    box-sizing: border-box;
}

/* Background Swoosh Effect (Identical to Contact) */
.services-header-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    height: 100%;
    width: 300px;
    background: radial-gradient(circle at left, #103f1d10 0%, transparent 80%);
    transform: rotate(25deg);
    pointer-events: none;
}

/* Heading Typography */
.services-header-top h2 {
    color: #103f1d;
    font-family: inherit;
    /* Inherit global font */
    font-size: 3rem;
    /* Matches Contact Desktop */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 0;
}

/* Paragraph Typography */
.services-header-top p {
    color: #103f1d;
    /* Keeping service color as requested, but matching size/spacing */
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: normal;
    /* Override previous 200 font-weight */
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    /* Reset override */
}

/* Responsive Breakpoints */

/* Tablet & Smaller Desktop */
@media (max-width: 900px) {
    /* Adjustments if any specific to tablet */
}

/* Mobile Devices (Tablet Portrait / Large Phone) */
@media (max-width: 768px) {
    .services-header-top h2 {
        font-size: 2.2rem;
    }

    .services-header-top p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .services-header-top {
        padding: 40px 15px;
    }

    .services-header-top h2 {
        font-size: 1.8rem;
    }
}