.elementor-3 .elementor-element.elementor-element-23c5cfa1{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3 .elementor-element.elementor-element-fd46e9e{--display:flex;}.elementor-3 .elementor-element.elementor-element-c013548{--display:flex;}.elementor-3 .elementor-element.elementor-element-5ea9cb8{--display:flex;}.elementor-3 .elementor-element.elementor-element-9744de6{--display:flex;}.elementor-3 .elementor-element.elementor-element-6d0e034{--display:flex;}.elementor-3 .elementor-element.elementor-element-2687400{--display:flex;}.elementor-3 .elementor-element.elementor-element-f1ed28e{--display:flex;}.elementor-3 .elementor-element.elementor-element-7fdb9b8{--display:flex;}.elementor-3 .elementor-element.elementor-element-6749255{--display:flex;}.elementor-3 .elementor-element.elementor-element-6a26196{--display:flex;}.elementor-3 .elementor-element.elementor-element-c4e322a{--display:flex;}.elementor-3 .elementor-element.elementor-element-1bce62f{--display:flex;}.elementor-3 .elementor-element.elementor-element-5251331{--display:flex;}.elementor-3 .elementor-element.elementor-element-61fc17b{--display:flex;}.elementor-3 .elementor-element.elementor-element-3c599c6{--display:flex;}.elementor-3 .elementor-element.elementor-element-83b6c52{--display:flex;}.elementor-3 .elementor-element.elementor-element-b4d78ec{--display:flex;}.elementor-3 .elementor-element.elementor-element-aed64b7{--display:flex;}.elementor-3 .elementor-element.elementor-element-ed73008{--display:flex;}.elementor-3 .elementor-element.elementor-element-fb242f2 .elementor-heading-title{font-size:1rem;line-height:1.5em;}/* Start custom CSS *//* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            line-height: 1.2;
            font-weight: 700;
        }
        
        h1 {
            font-size: clamp(32px, 5vw, 48px);
            color: #ffffff;
        }
        
        h2 {
            font-size: clamp(24px, 4vw, 32px);
            color: #764ba2;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
        }
        
        h3 {
            font-size: clamp(20px, 3vw, 24px);
            color: #764ba2;
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }
        
        h4 {
            font-size: clamp(18px, 2.5vw, 20px);
            color: #764ba2;
            margin-bottom: 0.75rem;
            margin-top: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        
        a {
            color: #667eea;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            opacity: 0.8;
        }
        
        ul, ol {
            margin-bottom: 1rem;
            margin-left: 2rem;
            line-height: 1.8;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        
        
        /* Main Content */
        main {
            margin-top: 70px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            padding: 4rem 0;
            text-align: center;
            position: relative;
        }
        
        .hero-section h1 {
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }
        
        .effective-date {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 1rem;
            font-style: italic;
        }
        
        /* Content Section */
        .content-section {
            padding: 4rem 0;
            background: #ffffff;
        }
        
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .policy-card {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .policy-card:last-child {
            margin-bottom: 0;
        }
        
        .highlight-box {
            background: #ffffff;
            border-left: 4px solid #667eea;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        
        .contact-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            padding: 2.5rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .contact-box h3 {
            color: #ffffff;
            margin-top: 0;
        }
        
        .contact-box p {
            margin-bottom: 0.5rem;
        }
        
        .contact-box a {
            color: #ffffff;
            font-weight: 600;
            text-decoration: underline;
        }
        
        .contact-box a:hover {
            opacity: 0.9;
        }
        
        
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav[role="navigation"] {
                flex-direction: column;
            }
            
            .main-menu {
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 0.5rem;
            }
            
            .main-menu li {
                width: 100%;
            }
            
            .main-menu a {
                display: block;
                padding: 0.75rem;
            }
            
            main {
                margin-top: 180px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .policy-card {
                padding: 1.5rem;
            }
            
            .contact-box {
                padding: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
            
            .policy-card {
                padding: 1.25rem;
            }
        }/* End custom CSS */