
        :root {
            --primary-color: #4361ee;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary-color: #f72585;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --gradient-blue: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            --gradient-green: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #3a56e8;
            border-color: #3a56e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Breadcrumb Area */
        .breadcumb-area {
            background: url('assets/legal-docs.jpg') no-repeat center center/cover;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
        }

        .breadcumb-area:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .breadcumb-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .breadcumb-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .breadcumb-inner ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            flex-wrap: wrap;
        }

        .breadcumb-inner ul li {
            margin: 0 10px;
            color: #fff;
        }

        .breadcumb-inner ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcumb-inner ul li a:hover {
            color: var(--primary-light);
        }

        .breadcumb-inner ul li i {
            margin-right: 10px;
        }

        .brpt h2 {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Policy Content Section */
        .policy-section {
            padding: 100px 0;
            position: relative;
        }

        .policy-section:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, #f8f9fa 100%);
            z-index: 0;
        }

        .policy-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            padding: 40px;
            margin-bottom: 30px;
        }

        .policy-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-green);
        }

        .policy-card h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 28px;
        }

        .policy-card h3 {
            color: var(--dark-color);
            margin: 25px 0 15px;
            font-size: 22px;
        }

        .policy-card p,
        .policy-card ul {
            margin-bottom: 15px;
            color: var(--gray-color);
            line-height: 1.8;
        }

        .policy-card ul {
            padding-left: 20px;
        }

        .policy-card li {
            margin-bottom: 10px;
        }

        .notice-card {
            background-color: #fff8e1;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        .notice-card h4 {
            color: var(--dark-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .notice-card h4 i {
            margin-right: 10px;
            color: #f59e0b;
        }

        /* Tab Navigation */
        .policy-tabs {
            margin: 40px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .policy-tabs .nav-link {
            padding: 12px 24px;
            font-weight: 500;
            color: var(--gray-color);
            border: none;
            position: relative;
            background: transparent;
            border-radius: 8px 8px 0 0;
            margin-right: 5px;
        }

        .policy-tabs .nav-link.active {
            color: var(--primary-color);
            background: rgba(67, 97, 238, 0.1);
        }

        .policy-tabs .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
        }

        .policy-tabs .nav-link:hover {
            color: var(--primary-color);
            background: rgba(67, 97, 238, 0.05);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        /* Animation Classes */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .brpt h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .brpt h2 {
                font-size: 2.5rem;
            }

            .policy-card {
                padding: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .breadcumb-area {
                padding: 120px 0 60px;
            }

            .brpt h2 {
                font-size: 2rem;
            }

            .policy-section {
                padding: 60px 0;
            }

            .policy-card {
                padding: 25px;
            }

            .policy-card h2 {
                font-size: 24px;
            }

            .policy-card h3 {
                font-size: 20px;
            }

            .policy-tabs .nav-link {
                padding: 10px 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 575.98px) {
            .breadcumb-area {
                padding: 100px 0 40px;
            }

            .brpt h2 {
                font-size: 1.8rem;
            }

            .policy-card {
                padding: 20px;
            }
        }
    