 .border-line-middle {
            display: grid;
            place-content: center;
            height: 100%;
        }

        .border-line-middle span {
            border: 1px solid rgba(204, 204, 204, 0.56);
            height: 54vh;
            position: relative;
            overflow: hidden;
        }

        .border-line-middle span p {
            width: 14px;
            height: 14px;
            position: absolute;
            left: -7px;
            top: 0;
            border-radius: 50%;
            background-color: #00aca3;
            transition: 5.6s ease;
            animation: moveUpDown 2s infinite ease-in-out;
        }

        .border-line-middle span p::after {
            content: "";
            width: 14px;
            height: 14px;
            position: absolute;
            box-shadow: 0px 0px 10px 7px #e0edfa, 0px 0px 10px 7px rgb(0, 175, 166);
            border-radius: 50%;
            animation: pulse 2s infinite ease-in-out;
        }

        .faq__wrap .accordion-item {
            box-shadow: 2px 3px 9px 0px rgba(8, 15, 52, 0.20);
        }
		
		 /* Features Section */
        .features {
            padding: 4rem 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #04A49B !important;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #207cca;
            margin-bottom: 1rem;
        }