:root {
            --silver: linear-gradient(135deg, #EFC637 0%, #EFC637 100%);
            --gold: linear-gradient(135deg, #EFC637 0%, #EFC637 100%);
            --platinum: linear-gradient(135deg, #EFC637 0%, #EFC637 100%);
            --blue: #000000;
            --dark: #2c3e50;
        }

        body {

            overflow-x: hidden;
        }


        .pricing-section {
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            width: 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            animation: fadeInDown 0.8s ease;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--blue);
            margin: 20px auto;
            border-radius: 2px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .table-container {

            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transform-style: preserve-3d;
            animation: fadeInUp 0.8s ease;
            width: 100%;
        }

        .pricing-table {
            background: #fff;
            border-radius: 12px;
           /* overflow: hidden;
            position: relative;
            transform: translateZ(0);
            width: 100%;
            table-layout: fixed; /* Ensure table respects width */
        }

        .pricing-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 18px;
            text-align: center;
            vertical-align: middle;
            border: 1px solid rgba(233, 236, 239, 0.8);
            transition: all 0.3s ease;
            word-wrap: break-word; /* Handle long content */
        }

        /* Column width adjustments */
        .pricing-table th:nth-child(1),
        .pricing-table td:nth-child(1) {
            width: 30%; /* Service name column */
            text-align: left;
            padding-left: 30px;
        }

        .pricing-table th:nth-child(n+2),
        .pricing-table td:nth-child(n+2) {
            width: 23.33%; /* Equal width for pricing columns */
        }

        .pricing-table thead th {
            background-color: var(--blue);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 16px;
            padding: 22px 15px;
            position: sticky;
            top: 0;
            z-index: 20;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .sticky-head {
            position: sticky;
            top: 0px;
            z-index: 15;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            animation: fadeIn 0.6s ease;
        }
        .sticky-row {
            position: sticky;
            top: 68px;
            z-index: 15;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            animation: fadeIn 0.6s ease;
        }
        /*.sticky-row {
            position: sticky;
            Z-INDEX: 99999;
            top: 0px;
        }*/


        .pricing-table tbody tr {
            animation: fadeIn 0.5s ease;
            animation-fill-mode: both;
        }

        /* Animation delays for rows */
        .pricing-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
        .pricing-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
        .pricing-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
        .pricing-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
        .pricing-table tbody tr:nth-child(5) { animation-delay: 0.5s; }

        .pricing-table tbody tr:nth-child(odd) {
            background-color: rgba(248, 249, 250, 0.7);
        }

        .pricing-table tbody tr:hover {
            background-color: #fff7d9
        }

        .pricing-table tbody tr:hover td {
            font-weight: 600;
        }

        .price-header {
            padding: 20px 15px;
            color: white;
            font-weight: 700;
            font-size: 20px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .silver-header {
            background: var(--silver);
        }

        .gold-header {
            background: var(--gold);
        }

        .platinum-header {
            background: var(--platinum);
        }

        .price-tag {
            font-size: 26px;
            font-weight: 800;
            margin: 8px 0;
            letter-spacing: -1px;
        }

        .price-tag small {
            font-size: 14px;
            font-weight: 600;
            display: block;
            opacity: 0.9;
            letter-spacing: 0;
        }

        .tagline {
            font-style: italic;
            font-size: 14px;
            opacity: 0.95;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .feature-check {
            color: #2ecc71;
            font-size: 20px;
            text-shadow: 0 2px 3px rgba(46, 204, 113, 0.3);
            transition: all 0.3s ease;
        }
        .feature-times {
            color: #e74c3c;
            font-size: 20px;
            text-shadow: 0 2px 3px rgba(46, 204, 113, 0.3);
            transition: all 0.3s ease;
        }

        .feature-price {
            color: #e74c3c;
            font-weight: 700;
            font-size: 16px;
        }

        .feature-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 15px;
            letter-spacing: 0.3px;
        }

        .section-divider {
            background-color: rgba(233, 236, 239, 0.9);
            font-weight: 800 !important;
            text-align: center !important;
            color: var(--dark);
            font-size: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        .section-divider:after {
            content: '';
            position: absolute;
            left: 25%;
            bottom: 0;
            width: 50%;
            height: 2px;
            background: var(--blue);
        }

        .media-section {
            font-weight: 800;
            text-align: center;
            background-color: rgba(241, 248, 254, 0.9);
            color: var(--dark);
            font-size: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            position: relative;
        }

        .media-section:after {
            content: '';
            position: absolute;
            left: 25%;
            bottom: 0;
            width: 50%;
            height: 2px;
            background: var(--blue);
        }

        .empty-cell {
            background-color: transparent !important;
        }

        .btn-choose {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            color: #efc637;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            cursor: pointer;
        }

        .btn-choose:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            color: #efc637;
            cursor: pointer;
        }

        .btn-bronze {
            background: #000000;
        }

        .btn-gold {
            background: #000000;
        }

        .btn-sliver {
            background: #000000;
        }

        @media (max-width: 992px) {
            .pricing-table th:nth-child(1),
            .pricing-table td:nth-child(1) {
                width: 35%;
            }

            .pricing-table th:nth-child(n+2),
            .pricing-table td:nth-child(n+2) {
                width: 21.66%;
            }

            .price-tag {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 0 10px;
            }

            .pricing-table th:nth-child(1),
            .pricing-table td:nth-child(1) {
                width: 40%;
                padding-left: 15px;
            }

            .pricing-table th:nth-child(n+2),
            .pricing-table td:nth-child(n+2) {
                width: 20%;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 12px 8px;
                font-size: 14px;
            }

            .price-tag {
                font-size: 20px;
            }

            .price-tag small {
                font-size: 12px;
            }

            .feature-check {
                font-size: 18px;
            }

            .btn-choose {
                padding: 8px 12px;
                font-size: 11px;
            }



            .pricing-table thead th {
                position: static;
                font-size: 14px;
                padding: 15px 8px;
            }
        }


        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

@media screen and (min-width: 1200px) {
    .u-xl-size1of2, .u-xl-size2of4, .u-xl-size3of6, .u-xl-size4of8, .u-xl-size5of10, .u-xl-size6of12, .u-xl-size8of16 {
        width: 100% !important;
    }
}
.Grid-cell-box {
    margin-top: 45px;
}
.cus-margin {
    margin-top: 50px !important;
    text-align: justify;
}
.cus-margin h2 {
    font-size: 45px;
    color: #000000;
    font-weight: 600;
    text-align: left;
}
.cus-margin p {
    font-size: 20px;
}
.banner-bg {
    background-image: url(../images/valuation-web-img.jpg);

    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-position: left 79% bottom 21%;
}
.Grid--spaceHorizontalLg>.Grid-cell {

    padding: 0 191px;
}
.Box--fees {
    background-color: #ffffff;
    overflow: visible;
    position: relative;
    border-radius: 30px;
    border: 4px solid #f2c539;

}
.Box--fees .Heading {
    color: #000000;
    font-weight: 600;
}
.Box--fees .Box-text {
    color: #000000;
    font-size: 18px;
    line-height: 1.25;
    margin-top: 10px;
}
@media (max-width: 500px) {
.banner-bg {
    background-image:unset;

    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-position: left 79% bottom 21%;
}
.cus-margin h2 {
    font-size: 24px;
    font-weight: 500;
}
.cus-margin p {
    font-size: 16px;
}
.sticky-row {
    position: sticky;
    top: 50px;
    z-index: 15;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}
.pricing-section {
   padding: unset;
}

}