 .about-section {
            background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
            color: #1e293b;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(96, 0, 24, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            /* margin-bottom: 30px; */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            /* gap: 20px; */
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #1E3A8A;
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, #1E3A8A, #600018);
            border-radius: 3px;
        }

        /* Bone animation styles */
        .bone-animation {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 70px;
            width: 70px;
        }
        
        .bone-left, .bone-right {
            position: absolute;
            z-index: 88;
            animation: floatBone 3s ease-in-out infinite;
        }
        
        .bone-left {
            left: 0%;
            bottom: 0px;
            animation-delay: 0.5s;
        }
        
        .bone-right {
            top:0%;
            right: 0%;
            animation-delay: 1s;
        }
        
        @keyframes floatBone {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(-5deg);
            }
            50% {
                transform: translateY(-5px) rotate(5deg);
            }
            75% {
                transform: translateY(-15px) rotate(-3deg);
            }
        }
        
        /* Rest of your CSS code */
        .about-content {
            position: relative;
            z-index: 2;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-list li {
            margin-bottom: 25px;
            padding: 25px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .about-list li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #1E3A8A;
            transition: width 0.4s ease;
        }

        .about-list li:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 2px solid #1E3A8A;
        }

        .about-list li:hover::before {
            width: 8px;
            background: #600018;
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1E3A8A, #253b85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
            color: white;
            font-size: 26px;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
            transition: all 0.4s ease;
        }

        .about-list li:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #600018, #7a0020);
        }

        .list-content h4 {
            color: #1E3A8A;
            margin-bottom: 8px;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .list-content p {
            color: #64748b;
            margin: 0;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .about-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid #1E3A8A;
            height: 100%;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(30, 58, 138, 0.03) 0%, transparent 100%);
            z-index: 0;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border: 2px solid #600018;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #600018, #7a0020);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
            box-shadow: 0 8px 20px rgba(96, 0, 24, 0.25);
            position: relative;
            z-index: 2;
        }

        .about-card h3 {
            color: #1E3A8A;
            margin-bottom: 20px;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-card p {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }

        .highlight-box {
            background: linear-gradient(to right, rgba(30, 58, 138, 0.1) 0%, rgba(96, 0, 24, 0.1) 100%);
            border-radius: 12px;
            padding: 25px;
            position: relative;
            border-left: 5px solid #600018;
            font-style: italic;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .highlight-box p {
            color: #1E3A8A;
            font-weight: 700;
            margin: 0;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .highlight-box i:first-child {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 24px;
            color: #600018;
            opacity: 0.7;
        }

        .highlight-box i:last-child {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 24px;
            color: #600018;
            opacity: 0.7;
        }

        .confidence-section {
            margin: 60px 0;
        }

        .confidence-card {
            background: white;
            border-radius: 14px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid #1E3A8A;
            position: relative;
            overflow: hidden;
        }

        .confidence-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1E3A8A, #600018);
            transition: height 0.4s ease;
        }

        .confidence-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border: 2px solid #600018;
        }

        .confidence-card:hover::before {
            height: 8px;
        }

        .confidence-card h4 {
            color: #1E3A8A;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .confidence-card p {
            color: #64748b;
            margin: 0;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .cta-content {
            background: white;
            padding: 40px;
            border-radius: 16px;
            max-width: 850px;
            margin: 0 auto;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #1E3A8A;
            position: relative;
            overflow: hidden;
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1E3A8A, #600018);
        }

        .cta-content h3 {
            color: #1E3A8A;
            margin-bottom: 15px;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
        }

        .cta-content p {
            color: #64748b;
            margin-bottom: 30px;
            font-size: 1.2rem;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-book {
            border: none;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: linear-gradient(90deg, #a35b5b 0%, #600018 100%);
            color: white !important;
            border: 2px solid #800020;
        }

        .btn-book:hover {
            background-color: #600018;
            border-color: #600018;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
        }
        .button-calls {
            background-color: #ffff;
             border: 1px solid #253b85;
             color: #253b85;
             font-weight: 600;
             text-decoration: none;
             border-radius: 50px;
            padding: 0.8rem 1.5rem;
        }
        .button-calls:hover {
            background-color: #253b85;
            border: 1px solid #253b85;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }

            .about-list li {
                padding: 20px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 22px;
                margin-right: 20px;
            }

            .about-card {
                padding: 30px;
            }
            
            .bone-left, .bone-right {
                transform: scale(0.8);
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .about-list li {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }

            .icon-wrapper {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .about-card {
                padding: 25px;
            }

            .cta-content {
                padding: 30px 20px;
            }

            .cta-content h3 {
                font-size: 1.7rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-book,
            .button-calls {
                width: 100%;
                justify-content: center;
            }
            
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }

            .confidence-card {
                margin-bottom: 25px;
                padding: 25px 20px;
            }

            .btn-book,
            .button-calls {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }