@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Poppins", sans-serif;
            font-weight: normal;
            font-style: normal;
            color: #677284;
            line-height: 1.6;
        }
        
        img {
            max-width: 100%;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            color: #3A424E;
            margin: 0;
        }
        
        /* Header Styles */
        .header_navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background-color: #fff;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            padding: 10px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .navbar-brand img {
            height: 70px;
        }
        
        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        
        .nav-links a {
            color: #3A424E;
            font-size: 16px;
            padding: 8px 15px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #fc9231;
        }
        
        .navbar-toggler {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .toggler-icon {
            width: 30px;
            height: 2px;
            background-color: #3A424E;
            display: block;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .header_hero {
            position: relative;
            padding-top: 120px;
            min-height: 350px;
            overflow: hidden;
        }
        
        .header_hero::before {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #287a54 0%, #319366 100%);
            z-index: -1;
        }
        
        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
        }
        
        .shape-1 {
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .shape-2 {
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .shape-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px 0;
        }
        
        .hero-content h1 {
            font-size: 44px;
            font-weight: 700;
            color: #fc9231;
            margin-bottom: 15px;
        }
        
        .hero-content p {
            font-size: 18px;
            color: #fff;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Policy Content Section */
        .policy-content {
            position: relative;
            padding: 60px 0 80px;
            background-color: #fff;
        }
        
        .policy-section {
            scroll-margin-top: 100px;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #3A424E;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #fc9231;
            display: inline-block;
        }
        
        .policy-list {
            list-style: none;
            padding: 0;
        }
        
        .policy-list li {
            padding: 12px 0 12px 35px;
            position: relative;
            font-size: 16px;
            color: #677284;
            line-height: 1.8;
        }
        
        .policy-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            width: 24px;
            height: 24px;
            background-color: #319366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .policy-list li strong {
            color: #3A424E;
            font-weight: 600;
        }
        
        .contact-email {
            color: #fc9231;
            font-weight: 600;
            text-decoration: underline;
        }
        
        .contact-email:hover {
            color: #ff6b38;
        }
        
        /* Footer */
        .footer_area {
            background: linear-gradient(135deg, #287a54 0%, #319366 100%);
            padding: 60px 0 30px;
            position: relative;
        }
        
        .footer_content {
            text-align: center;
        }
        
        .footer_social {
            margin-bottom: 30px;
        }
        
        .footer_social ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .footer_social ul li a {
            width: 45px;
            height: 45px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .footer_social ul li a:hover {
            background-color: #fff;
            color: #319366;
        }
        
        .footer_links {
            margin-bottom: 20px;
        }
        
        .footer_links p {
            color: #fff;
            font-size: 14px;
        }
        
        .footer_links a {
            color: #fc9231;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .footer_links a:hover {
            color: #ff6b38;
        }
        
        .footer_copyright p {
            color: #fff;
            font-size: 14px;
        }
        
        .footer_copyright a {
            color: #fff;
            transition: color 0.3s ease;
        }
        
        .footer_copyright a:hover {
            color: #fc9231;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 45px;
            height: 45px;
            background-color: #fc9231;
            color: #fff;
            border-radius: 5px;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
            transition: all 0.3s ease;
        }
        
        .back-to-top:hover {
            background-color: #ff6b38;
        }
        
        .back-to-top.show {
            display: flex;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar-toggler {
                display: block;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
                display: none;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .policy-list li {
                font-size: 15px;
            }
            
            .header_hero {
                min-height: 280px;
                padding-top: 100px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .navbar-brand img {
                height: 50px;
            }
        }