.article-section {
            padding: 60px 0;
        }

        .article-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .article-hero {
            display: flex;
            align-items: flex-start;
        }

        h2 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .article-title {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .article-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #1fc602;
            border-radius: 2px;
        }

        .article-image {
            display: flex;
            align-items: flex-start;
            max-width: 500px;
            width: 100%;
            height: 400px;
        }

        .article-image img {
            /* background-color: #d1d1d1; */
            height: 100%;
            border-radius: 12px;
            /* margin: 30px auto; */
            /* width: 100%; */
            /* max-width: 800px; */

        }

        /* .article-image {
            background-color: #d1d1d1;
            height: 400px;
            border-radius: 12px;
            margin: 30px auto;
            max-width: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
        } */

        /* Why Us Block */
        .why-us {
            max-width: 900px;
            /* margin: 0 auto ; */
            text-align: start;
        }

        .advantages-list {
            list-style: none;
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .advantage-item {
            background: white;
            /* padding: 20px; */
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            /* margin: 15px 0; */
            text-align: left;
            font-size: 1.1rem;
            position: relative;
            /* padding-left: 60px; */
        }

        .advantage-icon {
            position: absolute;
            left: -45px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background-color: #1fc602;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .highlight {
            color: #1fc602;
            font-weight: 600;
        }

        /* Indications Block */
        .indications {
            /* max-width: 800px; */
            margin: 100px auto;
            /* text-align: center; */
            background-color: rgb(247, 252, 245);
            border-radius: 30px;
            padding: 30px;
        }

        .indications--wrapper {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 30px;
        }

        /* .indications h3 {
            color: #1fc602;
            margin-bottom: 20px;
            font-size: 1.5rem;
        } */

        .indications-list {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
            margin-top: 20px;
            text-align: left;
        }

        .indications-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            list-style: none;
            font-size: 1.1rem;
        }

        .indications-list li::before {
            content: '•';
            color: #1fc602;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Procedure Block */
        .procedure {
            /* max-width: 800px; */
            margin: 100px auto;
            text-align: center;
        }

        .procedure--wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .procedure-steps {
            list-style: none;
            margin-top: 30px;
        }

        .procedure-step {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin: 20px 0;
            text-align: left;
            font-size: 1.1rem;
            counter-increment: step;
        }

        .procedure-step::before {
            content: counter(step) '.';
            display: inline-block;
            width: 30px;
            font-weight: bold;
            color: #1fc602;
            margin-right: 10px;
        }

        /* Services Grid */
        .services {
            /* max-width: 900px; */
            margin: 100px auto;
            text-align: center;
        }

        .services--wrapper {
            display: flex;
            justify-content: space-between;
        }

        .services-image {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .services-image .services-image-1 {
            height: 313px;
        }

        .services-grid {
            max-width: 750px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .service-item p {
            /* background: white; */
            /* padding: 15px; */
            /* border-radius: 8px; */
            /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
            font-size: .9rem;
            text-align: start;
            position: relative;
            padding: 0;
            margin: 0;
        }

        .service-item p::after {
            content: '';
            position: absolute;
            top: 50%;
            left: -10px;
            /* transform: translateY(50%); */
            width: 4px;
            height: 4px;
            background-color: #1fc602;
            border-radius: 2px;
        }

        /* CTA Button */
        .cta-button {
            display: block;
            max-width: 300px;
            margin: 40px auto;
            background-color: #1fc602;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 198, 2, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #1aa802;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 198, 2, 0.4);
        }


        .final-cta {
            background-color: #1fc602;
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 30px;
            margin-bottom: 50px;
        }

        .final-cta h2 {
            color: white;
        }

        .final-cta h2::after {
            background-color: white;
        }

        .contact-info {
            max-width: 600px;
            margin: 20px auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .simple-form {
            max-width: 500px;
            margin: 30px auto 0;

        }

        .simple-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .simple-form label a {
            display: block;
            /* margin-bottom: 8px; */
            font-weight: 600;
            /* color: white; */
            font-size: .9rem;
            color: white;
            text-decoration: underline;
        }

        .simple-form label {
            display: flex;
            align-items: center;
        }

        .simple-form input {
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .simple-form button {
            background-color: white;
            color: #1fc602;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .simple-form button:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        /* Responsive design for mobile and tablet devices */
        @media (max-width: 1024px) {
            .article-hero {
                flex-direction: column;
            }

            .why-us {
                margin-top: 30px;
                width: 100%;
            }

            .article-image {
                width: 100%;
                max-width: 100%;
            }

            .indications--wrapper {
                flex-direction: column;
            }

            .procedure--wrapper {
                flex-direction: column;
            }

            .services--wrapper {
                flex-direction: column;
                align-items: center;
            }

            .services-grid {
                width: 100%;
            }

            .services-image {
                margin-top: 30px;
            }

            h2, .article-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .article-section {
                padding: 40px 20px;
            }
            .article-image{
                margin-bottom: 100px;
            }
            .article-image img{
              height: auto;
            }

            h2, .article-title {
                font-size: 1.6rem;
            }

            .article-title::after {
                width: 60px;
                height: 3px;
            }

            /* .article-image {
                height: 300px;
            } */

            .advantage-item {
                padding-left: 0;
            }

            .advantage-icon {
                left: 0;
                position: relative;
                margin-bottom: 0;
            }

            .indications {
                margin: 50px auto;
                padding: 20px;
                border-radius: 20px;
            }

            .procedure {
                margin: 50px auto;
            }

            .procedure-step {
                padding: 20px;
                font-size: 1rem;
            }

            .services {
                margin: 50px auto;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }

            .final-cta {
                padding: 40px 20px;
                border-radius: 20px;
            }

            .contact-info {
                font-size: 1rem;
            }

            .simple-form {
                width: 100%;
                padding: 0 10px;
            }

            .simple-form input, .simple-form button {
                width: 100%;
            }

            .article-hero {
                gap: 20px;
            }

            .advantages-list {
                gap: 25px;
                padding: 0;
            }
            .indications-list {
                padding: 0;
            }

            .procedure-steps {
                padding-left: 15px;
            }
        }

        @media (max-width: 480px) {
            .article-section {
                padding: 30px 15px;
            }

            h2, .article-title {
                font-size: 1.4rem;
                margin-bottom: 20px;
            }

            .article-title::after {
                width: 50px;
                height: 2px;
            }

            .article-image {
                height: 200px;
            }

            .advantage-item {
                font-size: 1rem;
            }

            .indications-list li {
                font-size: 1rem;
            }

            .procedure-step {
                padding: 15px;
                font-size: 0.95rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .final-cta h2 {
                font-size: 1.5rem;
            }

            .contact-info p {
                font-size: 0.95rem;
            }

            .simple-form button {
                padding: 12px;
            }

            .indications {
                margin: 40px auto;
            }

            .procedure {
                margin: 40px auto;
            }

            .services {
                margin: 40px auto;
            }

            .advantages-list {
                margin-top: 20px;
                gap: 20px;
            }

            .service-item p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .article-section {
                padding: 20px 10px;
            }

            h2, .article-title {
                font-size: 1.3rem;
            }

            .article-image {
                height: 150px;
            }

            .final-cta {
                padding: 30px 15px;
            }

            .final-cta h2 {
                font-size: 1.3rem;
            }

            .contact-info p {
                font-size: 0.9rem;
            }

            .simple-form input {
                padding: 10px;
            }

            .simple-form button {
                font-size: 1rem;
            }
        }