       body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #ffeb3b;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            position: relative;
            overflow: hidden;
            animation: heroBackgroundSlide 2s ease-out;
        }

        @keyframes heroBackgroundSlide {
            0% {
                background-position: -100% 0;
                opacity: 0.8;
            }
            100% {
                background-position: 0 0;
                opacity: 1;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffeb3b;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%2364dd17;stop-opacity:0.1" /></linearGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)" opacity="0.3"><animateTransform attributeName="transform" type="translate" values="0,0;50,30;0,0" dur="6s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="80" fill="url(%23grad)" opacity="0.2"><animateTransform attributeName="transform" type="translate" values="0,0;-30,50;0,0" dur="8s" repeatCount="indefinite"/></circle><circle cx="600" cy="700" r="120" fill="url(%23grad)" opacity="0.25"><animateTransform attributeName="transform" type="translate" values="0,0;40,-20;0,0" dur="7s" repeatCount="indefinite"/></circle></svg>') no-repeat center center;
            background-size: cover;
            animation: float 10s ease-in-out infinite;
        }

        /* 3D Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-item {
            position: absolute;
            font-size: 3rem;
            opacity: 0.7;
            transform-style: preserve-3d;
        }

        .floating-item:nth-child(1) {
            top: 15%;
            left: 10%;
            animation: floatInAndSwing 4s ease-in-out infinite, hangingSwing 4s ease-in-out infinite 1s;
            animation-delay: 0.2s, 1.2s;
        }

        .floating-item:nth-child(2) {
            top: 25%;
            right: 15%;
            animation: floatInAndSwing 5s ease-in-out infinite, hangingSwing 5s ease-in-out infinite 1s;
            animation-delay: 0.4s, 1.4s;
        }

        .floating-item:nth-child(3) {
            top: 35%;
            right: 25%;
            animation: floatInAndSwing 4.5s ease-in-out infinite, hangingSwing 4.5s ease-in-out infinite 1s;
            animation-delay: 0.6s, 1.6s;
        }

        .floating-item:nth-child(4) {
            top: 45%;
            left: 20%;
            animation: floatInAndSwing 5.5s ease-in-out infinite, hangingSwing 5.5s ease-in-out infinite 1s;
            animation-delay: 0.8s, 1.8s;
        }

        .floating-item:nth-child(5) {
            top: 20%;
            left: 60%;
            animation: floatInAndSwing 4.2s ease-in-out infinite, hangingSwing 4.2s ease-in-out infinite 1s;
            animation-delay: 1s, 2s;
        }

        .floating-item:nth-child(6) {
            top: 50%;
            right: 40%;
            animation: floatInAndSwing 5.8s ease-in-out infinite, hangingSwing 5.8s ease-in-out infinite 1s;
            animation-delay: 1.2s, 2.2s;
        }

        @keyframes floatInAndSwing {
            0% {
                opacity: 0;
                transform: translateY(-50px) scale(0.5) rotate(0deg);
            }
            20% {
                opacity: 1;
                transform: translateY(0px) scale(1) rotate(5deg);
            }
            100% {
                opacity: 0.7;
                transform: translateY(0px) scale(1) rotate(0deg);
            }
        }

        @keyframes float3D {
            0%, 100% {
                transform: translateY(0px) translateX(0px) rotateY(0deg) rotateZ(0deg) scale(1);
            }
            25% {
                transform: translateY(20px) translateX(15px) rotateY(90deg) rotateZ(5deg) scale(1.1);
            }
            50% {
                transform: translateY(40px) translateX(-10px) rotateY(180deg) rotateZ(-5deg) scale(0.95);
            }
            75% {
                transform: translateY(25px) translateX(-20px) rotateY(270deg) rotateZ(3deg) scale(1.05);
            }
        }

        @keyframes hangingSwing {
            0%, 100% {
                transform: rotate(0deg) translateY(0px);
                transform-origin: top center;
            }
            25% {
                transform: rotate(8deg) translateY(10px);
                transform-origin: top center;
            }
            50% {
                transform: rotate(0deg) translateY(20px);
                transform-origin: top center;
            }
            75% {
                transform: rotate(-8deg) translateY(10px);
                transform-origin: top center;
            }
        }

        .hero-3d-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(100, 221, 23, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
            animation: backgroundShift 15s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.1) rotate(2deg);
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            text-align: left;
            z-index: 2;
            max-width: 600px;
            padding: 2rem 2rem 2rem 4rem;
            animation: heroSlideIn 1.2s ease-out;
        }

        .hero-images {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .sliding-images-container {
            position: relative;
            width: 400px;
            height: 500px;
            perspective: 1000px;
        }

        .sliding-image {
            position: absolute;
            width: 300px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: all 0.8s ease;
        }

        .sliding-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sliding-image:nth-child(1) {
            z-index: 3;
            transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
            animation: slideImage1 6s ease-in-out infinite;
        }

        .sliding-image:nth-child(2) {
            z-index: 2;
            transform: translateX(50px) translateY(20px) rotateY(-15deg) scale(0.9);
            animation: slideImage2 6s ease-in-out infinite;
        }

        .sliding-image:nth-child(3) {
            z-index: 1;
            transform: translateX(100px) translateY(40px) rotateY(-30deg) scale(0.8);
            animation: slideImage3 6s ease-in-out infinite;
        }

        @keyframes slideImage1 {
            0%, 33% {
                z-index: 3;
                transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
            }
            34%, 66% {
                z-index: 1;
                transform: translateX(100px) translateY(40px) rotateY(-30deg) scale(0.8);
            }
            67%, 100% {
                z-index: 2;
                transform: translateX(50px) translateY(20px) rotateY(-15deg) scale(0.9);
            }
        }

        @keyframes slideImage2 {
            0%, 33% {
                z-index: 2;
                transform: translateX(50px) translateY(20px) rotateY(-15deg) scale(0.9);
            }
            34%, 66% {
                z-index: 3;
                transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
            }
            67%, 100% {
                z-index: 1;
                transform: translateX(100px) translateY(40px) rotateY(-30deg) scale(0.8);
            }
        }

        @keyframes slideImage3 {
            0%, 33% {
                z-index: 1;
                transform: translateX(100px) translateY(40px) rotateY(-30deg) scale(0.8);
            }
            34%, 66% {
                z-index: 2;
                transform: translateX(50px) translateY(20px) rotateY(-15deg) scale(0.9);
            }
            67%, 100% {
                z-index: 3;
                transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
            }
        }

        @keyframes heroSlideIn {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.9);
            }
            50% {
                opacity: 0.7;
                transform: translateY(20px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #333, #666);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #666;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            color: #333;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            animation: slideInUp 1s ease-out 0.4s both;
            box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4); }
            50% { box-shadow: 0 8px 35px rgba(255, 235, 59, 0.6); }
            100% { box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4); }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats {
            padding: 5rem 2rem;
            background: #fff;
            text-align: center;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #ffeb3b;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 500;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid #ffeb3b;
            background: transparent;
            color: #333;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #ffeb3b;
            color: #333;
            transform: translateY(-2px);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 250px;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            margin: 0 0 0.5rem 0;
            font-size: 1.3rem;
        }

        .gallery-overlay p {
            margin: 0;
            opacity: 0.9;
        }

        /* Programs Section */
        .programs {
            padding: 5rem 2rem;
            background: #fff;
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .programs h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 235, 59, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .program-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .program-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .program-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .program-btn {
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            color: #333;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .program-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
        }

        /* Login Section */
        .login {
            padding: 5rem 2rem;
            background: #f8f9fa;
            display: none;
        }

        .login.active {
            display: block;
        }

        .login-container {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .login h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #ffeb3b;
            box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.1);
        }

        .login-btn {
            width: 100%;
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            color: #333;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
        }

        /* Footer */
        .footer {
            background: #333;
            color: #fff;
            padding: 3rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #ffeb3b;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #ffeb3b;
        }

        .subscribe-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .subscribe-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
        }

        .subscribe-btn {
            background: #ffeb3b;
            color: #333;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            background: #64dd17;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr auto;
                text-align: center;
            }

            .hero-content {
                text-align: center;
                padding: 2rem;
                order: 2;
            }

            .hero-images {
                order: 1;
                height: 300px;
                padding: 1rem;
            }

            .sliding-images-container {
                width: 250px;
                height: 300px;
            }

            .sliding-image {
                width: 200px;
                height: 250px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .stats-grid,
            .gallery-grid,
            .programs-grid {
                grid-template-columns: 1fr;
            }

            .gallery-filters {
                flex-direction: column;
                align-items: center;
            }

            .quote-item,
            .quote-item.reverse {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .quote-text p {
                font-size: 1.1rem;
            }

            .quote-text p::before,
            .quote-text p::after {
                display: none;
            }

            .quote-author {
                text-align: center;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* User status */
        .user-status {
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .user-status.active {
            display: flex;
        }

        .logout-btn {
            background: #ff4444;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: #cc0000;
            transform: translateY(-1px);
        }

        /* Welcome Message */
        .welcome-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #fff, #f8f9fa);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            text-align: center;
            z-index: 2000;
            display: none;
            max-width: 500px;
            width: 90%;
        }

        .welcome-message.active {
            display: block;
            animation: welcomeSlideIn 0.5s ease-out;
        }

        .welcome-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            display: none;
        }

        .welcome-overlay.active {
            display: block;
        }

        @keyframes welcomeSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .welcome-message h2 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .welcome-message p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .welcome-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .welcome-btn {
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            color: #333;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .welcome-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
        }

        .welcome-btn.secondary {
            background: #6c757d;
            color: white;
        }

        .welcome-btn.secondary:hover {
            background: #5a6268;
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
        }

        /* Quotes Section */
        .quotes {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .quotes-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .quotes h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #333;
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .quotes-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .quote-item {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
            transition: all 0.3s ease;
        }

        .quote-item:hover {
            transform: translateY(-5px);
        }

        .quote-item.reverse {
            grid-template-columns: 1fr 150px;
        }

        .quote-image {
            animation: float 6s ease-in-out infinite;
            justify-self: center;
        }

        .quote-image svg {
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
            transition: all 0.3s ease;
        }

        .quote-item:hover .quote-image svg {
            transform: scale(1.1) rotate(5deg);
        }

        .quote-text {
            background: rgba(255, 255, 255, 0.9);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .quote-text p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 1rem;
            font-style: italic;
            position: relative;
        }

        .quote-text p::before {
            content: '"';
            font-size: 4rem;
            color: #ffeb3b;
            position: absolute;
            left: -2rem;
            top: -1rem;
            font-family: serif;
            opacity: 0.7;
        }

        .quote-text p::after {
            content: '"';
            font-size: 4rem;
            color: #ffeb3b;
            position: absolute;
            right: -1rem;
            bottom: -2rem;
            font-family: serif;
            opacity: 0.7;
        }

        .quote-author {
            font-weight: bold;
            color: #666;
            font-size: 1.1rem;
            display: block;
            text-align: right;
            margin-top: 1rem;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-15px) rotate(2deg); 
            }
        }

        /* Policy Sections */
        .policy {
            padding: 5rem 2rem;
            background: #f8f9fa;
            display: none;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.5s ease;
        }

        .policy.active {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

        .policy-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .policy h2 {
            color: #333;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-align: center;
        }

        .policy h3 {
            color: #ffeb3b;
            margin: 2rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .policy p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .policy ul {
            margin: 1rem 0;
            padding-left: 2rem;
        }

        .policy li {
            margin-bottom: 0.5rem;
            color: #555;
            line-height: 1.6;
        }

        .back-btn {
            background: linear-gradient(135deg, #ffeb3b, #64dd17);
            color: #333;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
        }
