/* Start custom CSS for html, class: .elementor-element-e00ec03 */<style>
    /* --- FONTS & BASICS --- */
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

    .clean-container {
        font-family: 'Roboto', sans-serif;
        color: #455a64;
        line-height: 1.6;
        background-color: #f0f8ff; /* Alice Blue */
        max-width: 100%;
        overflow-x: hidden;
    }

    /* --- VARIABLES --- */
    :root {
        --clean-teal: #00897b;     /* Main Brand Color */
        --clean-water: #e0f2f1;    /* Light Background */
        --clean-dark: #263238;     /* Text Color */
        --clean-alert: #ff7043;    /* Warning Orange */
        --clean-white: #ffffff;
    }

    /* --- HERO SECTION (Image 1) --- */
    .clean-hero {
        position: relative;
        height: 450px;
        background-image: url('https://punalu.com/wp-content/uploads/2026/03/blog-8-1.png');
        background-size: cover;
        background-position: center;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
        box-shadow: 0 10px 30px rgba(0,137,123, 0.15);
    }
    .clean-hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 137, 123, 0.7); /* Teal Overlay */
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    .hero-bubble {
        position: relative;
        z-index: 2;
        background: var(--clean-white);
        padding: 40px 60px;
        border-radius: 30px;
        text-align: center;
        max-width: 700px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .clean-hero h1 {
        font-family: 'Quicksand', sans-serif;
        font-size: 2.2rem;
        color: var(--clean-teal);
        margin: 0 0 10px 0;
        font-weight: 700;
    }
    .clean-hero p { font-size: 1.1rem; color: #78909c; margin: 0; }

    /* --- INTRO --- */
    .clean-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
        padding: 0 20px;
    }
    .clean-intro p { font-size: 1.1rem; }

    /* --- STEP BY STEP (Timeline Style) --- */
    .steps-section {
        max-width: 1000px;
        margin: 0 auto 60px auto;
        padding: 0 20px;
    }
    .section-title {
        text-align: center;
        font-family: 'Quicksand', sans-serif;
        color: var(--clean-dark);
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    .step-card {
        background: white;
        padding: 30px 20px;
        border-radius: 20px;
        text-align: center;
        transition: transform 0.3s;
        border: 2px solid transparent;
    }
    .step-card:hover {
        transform: translateY(-10px);
        border-color: var(--clean-water);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .step-icon {
        background: var(--clean-water);
        color: var(--clean-teal);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto 15px auto;
        font-weight: bold;
    }

    /* --- TOUGH STAINS (Split) --- */
    .stain-box {
        background: white;
        max-width: 1000px;
        margin: 0 auto 60px auto;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    .stain-col { flex: 1; padding: 40px; }
    .stain-do { background: #e8f5e9; } /* Light Green */
    .stain-dont { background: #ffebee; } /* Light Red */
    
    .stain-col h3 { margin-top: 0; font-family: 'Quicksand', sans-serif; }
    .stain-list { list-style: none; padding: 0; }
    .stain-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

    /* --- DEEP CLEANING (Image 2) --- */
    .deep-clean-wrap {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto 60px auto;
        padding: 20px;
    }
    .deep-img { flex: 1; }
    .deep-img img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 20px 20px 0 var(--clean-water);
    }
    .deep-text { flex: 1; }
    .deep-text h2 { font-family: 'Quicksand', sans-serif; color: var(--clean-teal); }

    /* --- APPLICATION GRID --- */
    .app-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto 60px auto;
        padding: 0 20px;
    }
    .app-card {
        background: white;
        padding: 25px;
        border-radius: 15px;
        border-top: 5px solid var(--clean-teal);
    }
    .app-card h4 { margin: 0 0 10px 0; color: var(--clean-dark); font-size: 1.2rem; }
    .app-card p { font-size: 0.9rem; color: #666; margin: 0; }

    /* --- MISTAKES (Alert Box) --- */
    .mistake-alert {
        background: var(--clean-alert);
        color: white;
        max-width: 900px;
        margin: 0 auto 60px auto;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
    }
    .mistake-alert h2 { margin-top: 0; font-family: 'Quicksand', sans-serif; }
    .mistake-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    .tag {
        background: rgba(255,255,255,0.2);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    /* --- FAQ --- */
    .clean-faq {
        max-width: 800px;
        margin: 0 auto 60px auto;
        padding: 0 20px;
    }
    details.clean-details {
        background: white;
        margin-bottom: 15px;
        padding: 15px 20px;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.3s;
    }
    details.clean-details:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    summary.clean-summary { font-weight: 600; color: var(--clean-teal); }
    .clean-ans { margin-top: 10px; font-size: 0.95rem; }

    /* --- FOOTER --- */
    .clean-footer {
        text-align: center;
        padding: 40px;
        background: white;
        border-top: 1px solid #eee;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .clean-hero { height: 350px; border-radius: 0; }
        .hero-bubble { width: 90%; padding: 30px; }
        .stain-box { flex-direction: column; }
        .deep-clean-wrap { flex-direction: column-reverse; }
        .deep-img img { box-shadow: none; }
    }
</style>/* End custom CSS */