.enhanced-heading {
    text-align: center;
    margin: 40px auto 30px auto;
    padding: 15px 20px;
    color: #001542;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    position: relative;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.9) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,174,239,0.15);
    display: block;
    max-width: 90%;
    width: fit-content;
    left: 0;
    right: 0;
    transform: none;
}

.enhanced-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,174,239,0.05) 0%, rgba(0,20,66,0.05) 100%);
    border-radius: 8px;
    z-index: -1;
}

.enhanced-heading::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #00aeef, #001542);
    margin: 15px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.enhanced-heading span {
    color: #00aeef;
    font-weight: 900;
}

section.transformational-cleaning {
    text-align: center;
    padding-top: 20px;
    position: relative;
}

section.transformational-cleaning::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,174,239,0.03) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

section.transformational-cleaning p {
    text-align: center;
    max-width: 900px;
    margin: 30px auto 40px auto;
    font-size: 19px;
    line-height: 1.7;
    color: #3e3f42;
}

@media (max-width: 768px) {
    .enhanced-heading {
        font-size: 32px;
        padding: 12px 15px;
        max-width: 95%;
    }
    
    .enhanced-heading::after {
        width: 80px;
    }
}
