        @font-face {
            font-family: "MyCustomFont";
            src: url("../fonts/myfont.ttf") format("truetype");
            font-weight: normal;
            font-style: normal;

        }
        
        /* Base Styles */
        :root {
            --primary-color: #3c3b6e;
            --secondary-color: #6d6b9e;
            --text-color: #333;
            --light-text: #555;
            --background-color: #f9f9f9;
            --section-bg: #ffffff;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
        }

   
        /* Main Content */
        .content {
            max-width: 1200px;
            margin: 120px auto 40px;
            padding: 0 20px;
        }
      

        .policy_section {
            background-color: var(--section-bg);
            padding: 30px;
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            /*box-shadow: var(--box-shadow);*/
            transition: transform 0.3s ease;
        }

        /*.policy_section:hover {*/
        /*    transform: translateY(-3px);*/
        /*}*/

        .policy_section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .policy_section p {
            font-size: 1.1rem;
            color: var(--light-text);
            margin: 15px 0;
        }

        .policy_section ul {
            list-style-type: disc;
            padding-left: 25px;
            margin: 15px 0;
        }

        .policy_section li {
            margin-bottom: 8px;
            color: var(--light-text);
        }

        .policy_section a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .policy_section a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Side by Side Section */
        .policy_images {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .policy_images .policy_text {
            flex: 1;
            min-width: 300px;
        }

        .policy_images .policy_image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .policy_images .policy_image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content {
                margin-top: 100px;
            }
            
            .policy_section {
                padding: 25px;
            }
            
            .policy_section h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .content {
                margin-top: 80px;
            }
            
            .policy_section {
                padding: 20px;
            }
            
            .policy_section h2 {
                font-size: 1.2rem;
            }
            
            .policy_section p {
                font-size: 0.8rem;
            }
            
            .policy_images {
                flex-direction: column;
                gap: 20px;
            }
            
            .policy_images .policy_text,
            .policy_images .policy_image {
                min-width: 100%;
            }
            .policy_section ul {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 576px) {
            .content {
                margin-top: 70px;
                padding: 0 15px;
            }
            
            .policy_section {
                padding: 15px;
            }
            
            .policy_section h2 {
                font-size: 1.3rem;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
        }