        .hero {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            padding: 80px 0;
            text-align: center;
            border-bottom: 4px solid #1fc602;
        }

        .images--wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }

        .images--wrapper img {
            max-width: 600px;
            width: 100%;
            /* height: 300px; */
            margin: 0 20px;
            border-radius: 10px;
        }

        .hero-title {
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .author {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            margin-top: 20px;
        }

        /* Content Section */
        .content-section {
            padding: 60px 0;
        }

        .story-section {
            max-width: 900px;
            margin: 0 auto 40px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .dialogue {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 3px solid #1fc602;
        }

        .patient-quote {
            font-style: italic;
            color: #555;
        }

        .doctor-quote {
            font-style: italic;
            color: #1fc602;
            font-weight: 600;
        }

        .highlight-section {
            background-color: #fcf9ed;
            border-left: 4px solid #ffc107;
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .strategy-section {
            counter-reset: strategy-step;
        }

        .strategy-step {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin: 50px 0;
            position: relative;
            counter-increment: strategy-step;
        }

        .strategy-step::before {
            content: counter(strategy-step);
            position: absolute;
            top: -20px;
            left: 25px;
            width: 40px;
            height: 40px;
            background-color: #1fc602;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .strategy-title {
            color: #1fc602;
            margin-bottom: 20px;
            font-size: 1.3rem;
            margin-left: 50px;
        }

        .strategy-content {
            margin-left: 50px;
        }

        .important-notes {
            background-color: #e8f5e8;
            border-left: 4px solid #1fc602;
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .questions-section {
            max-width: 800px;
            margin: 0 auto 40px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .question-item {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #1fc602;
        }

        .ps-section {
            max-width: 850px;
            margin: 0 auto 40px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .ps-section h3 {
            color: #1fc602;
            margin-bottom: 20px;
            text-align: center;
        }

        .disclaimer {
            background-color: #fcf9ed;
            border-left: 4px solid #ffc107;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
            font-size: 0.9rem;
        }

        @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .strategy-title{
                margin: 0;
                font-size: 1.2rem;
            }
            .strategy-content{
                margin: 0;
            }
        }