        .card {
            position: relative;
            max-width: 300px;
            height: auto;
            background: linear-gradient(-45deg, #fe0847, #feae3f);
            border-radius: 15px;
            margin: 0 auto;
            padding: 40px 20px;
            -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
            box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
            -webkit-transition: .5s;
            transition: .5s;
        }

        .card:hover {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        .col-sm-4:nth-child(1) .card,
        .col-sm-4:nth-child(1) .card .title .fa {
            background: linear-gradient(-45deg, #f403d1, #64b5f6);

        }

        .col-sm-4:nth-child(2) .card,
        .col-sm-4:nth-child(2) .card .title .fa {
            background: linear-gradient(-45deg, #ffec61, #f321d7);

        }

        .col-sm-4:nth-child(3) .card,
        .col-sm-4:nth-child(3) .card .title .fa {
            background: linear-gradient(-45deg, #24ff72, #9a4eff);

        }

        .card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: rgba(255, 255, 255, .1);
            z-index: 1;
            -webkit-transform: skewY(-5deg) scale(1.5);
            transform: skewY(-5deg) scale(1.5);
        }

        .title .fa {
            color: #fff;
            font-size: 60px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            text-align: center;
            line-height: 100px;
            -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
            box-shadow: 0 10px 10px rgba(0, 0, 0, .1);

        }

        .title h2 {
            position: relative;
            margin: 20px 0 0;
            padding: 0;
            color: #fff;
            font-size: 28px;
            z-index: 2;
        }

        .price,
        .option {
            position: relative;
            z-index: 2;
        }

        .price h4 {
            margin: 0;
            padding: 20px 0;
            color: #fff;
            font-size: 60px;
        }

        .option ul {
            margin: 0;
            padding: 0;

        }

        .option ul li {
            margin: 0 0 10px;
            padding: 0;
            list-style: none;
            color: #fff;
            font-size: 16px;
        }

        .card a {
            position: relative;
            z-index: 2;
            background: #fff;
            color: black;
            width: 150px;
            height: 40px;
            line-height: 40px;
            border-radius: 40px;
            display: block;
            text-align: center;
            margin: 20px auto 0;
            font-size: 16px;
            cursor: pointer;
            -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
            box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

        }

        .card a:hover {
            text-decoration: none;
        }

        /* //////////////////////////////////////////////// */
         html {
        scroll-behavior: smooth;
    }
    
    /* Offset for fixed header */
    .section-offset {
        padding-top: 80px;
        margin-top: -80px;
    }

        /* Unique styles for pricing section */
        .pricing-section {
            background: linear-gradient(to right, #f9f1e7, #f0e6d4);
            padding: 5rem 2rem;
        }

        .pricing-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-title {
            font-size: 2.8rem;
            font-weight: bold;
            color: #5c4632;
        }

        .pricing-subtitle {
            font-size: 1.2rem;
            color: #7a6b5c;
            margin-top: 0.5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .highlight {
            border: 4px solid #b89676;
        }

        .pricing-icon {
            font-size: 3rem;
            color: white;
            background: #b89676;
            padding: 1rem;
            border-radius: 50%;
        }

        .pricing-plan-title {
            font-size: 2rem;
            font-weight: bold;
            color: #5c4632;
            margin-top: 0.5rem;
        }

        .pricing-plan-desc {
            font-size: 1rem;
            color: #7a6b5c;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #b89676;
            margin-top: 1rem;
        }

        .pricing-features {
            margin-top: 1.5rem;
            text-align: left;
            display: inline-block;
        }

        .pricing-features li {
            font-size: 1rem;
            color: #7a6b5c;
            margin-bottom: 0.5rem;
        }

        .pricing-features li i {
            color: #b89676;
            margin-right: 0.5rem;
        }

        .pricing-features li .unavailable {
            color: red;
        }

        .pricing-btn {
            display: inline-block;
            margin-top: 1.5rem;
            background: #b89676;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 0.5rem;
            font-weight: bold;
            transition: background 0.3s;
        }

        .pricing-btn:hover {
            background: #a07d5c;
        }