/* Personal Loan */
.service-section {
            background: #f9f9f9;
        }

        .content-box h2 {
            font-size: 2.2rem;
            color: #222;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .content-box h2 .highlight {
            color: #d62828;
        }

        .content-box p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        .image-wrapper {
            display: inline-block;
            position: relative;
        }

        .image-wrapper img {
            max-width: 100%;
            border-radius: 15px;
            z-index: 2;
            position: relative;
        }

        .shape-bg {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(135deg, #d62828, #f77f00);
            z-index: 1;
            opacity: 0.15;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .content-box h2 {
                font-size: 1.9rem;
            }

            .content-box p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .content-box h2 {
                font-size: 1.6rem;
            }

            .content-box p {
                font-size: 0.9rem;
            }
        }