
     
            .policy-content {
                padding: 2rem;
            }
        

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 2rem 0;
            }
            
            .logo h1 {
                font-size: 1rem;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            nav {
                padding: 0 1rem;
            }
            
            .auth-dropdown-content {
                right: -100px;
            }
            
            .section {
                padding: 1rem;
            }
            
            .policy-content {
                padding: 1.5rem;
            }
            
            .video-info {
                padding: 1rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
           
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
           
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 10;
            margin-top: 20px;
            margin-bottom: 20px;
            
        }
        .logo {
            font-size: 4em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: bounce 2s infinite;
        }

        .title {
            font-size: 8.5em;
            margin-bottom: 10px;
            animation: colorChange 1200s infinite;
            font-weight: bold;
        }

        .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .effective-date {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        .content {
            padding: 30px;
            animation: slideIn 0.8s ease-out;
          
        }

        .section {
            
          font-weight: bold;
            padding: 25px;
            margin: 20px 0;
            border-radius: 15px;
          
           
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .section:hover::before {
            opacity: 1;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-left-color: #FF6B6B;
        }

        .section-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4ECDC4;
            animation: slideIn 0.5s ease-out;
        }

        .section-content {
            color: #555;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out;
              font-size: 2em;
        }

        .highlight {
            background: linear-gradient(135deg, #FFE066, #FF6B6B);
            background-size: 200% 200%;
            animation: gradientFlow 4s ease infinite;
            color: white;
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: bold;
        }

        .contact-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            background-size: 200% 200%;
            animation: gradientFlow 15s ease infinite;
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .contact-title {
            font-size: 2em;
            margin-bottom: 15px;
            animation: bounce 2s infinite;
        }

        .email-link {
            color: #4ECDC4;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: bold;
            padding: 10px 20px;
            border: 2px solid #4ECDC4;
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .email-link:hover {
            background: #4ECDC4;
            color: white;
            transform: scale(1.05);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            color: white;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5em;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 15px;
            }
            
            .logo {
                font-size: 4em;
            }
            
           
            
            .content {
                padding: 20px;
            }
        }
