 /* Section title */
        .sec-title h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
            position: relative;
        }

        .sec-title h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: #d62828;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* Feature block */
        .feature-block-one .inner-box {
            background: #fff;
            padding: 35px 30px;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s ease;
            height: 100%;
        }

        .feature-block-one .inner-box:hover {
            background: #b71527;
            color: #fff;
            transform: translateY(-8px);
            box-shadow: 0 10px 40px rgba(214, 40, 40, 0.4);
        }

        .feature-block-one .inner-box:hover h4,
        .feature-block-one .inner-box:hover p,
        .feature-block-one .inner-box:hover li {
            color: #fff;
        }

        /* Headings */
        .feature-block-one h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #d62828;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        /* Paragraph */
        .feature-block-one p {
            font-size: 1rem;
            color: #444;
            line-height: 1.7;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        /* Step numbers */
        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            background: #d62828;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(214, 40, 40, 0.4);
            transition: background 0.3s ease;
        }

        .feature-block-one .inner-box:hover .step-number {
            background: #fff;
            color: #d62828;
        }

        /* Lists */
        .feature-block-one ul {
            margin: 0;
            padding-left: 18px;
        }

        .feature-block-one ul li {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 8px;
            position: relative;
            transition: color 0.3s ease;
        }

        .feature-block-one ul li::before {
            content: "✔";
            color: #28a745;
            font-weight: bold;
            margin-right: 8px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .sec-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .sec-title h2 {
                font-size: 1.8rem;
            }

            .feature-block-one .inner-box {
                padding: 25px 20px;
            }

            .feature-block-one h4 {
                font-size: 1.2rem;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
                line-height: 35px;
            }
        }