        :root {
            --primary-bg: #f8f9fa;
            --accent-color: #4a90e2;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --gradient-primary: linear-gradient(135deg, #0D2A48, #2d5788 100%);
            --gradient-secondary: linear-gradient(135deg, #0D2A48, #2d5788 100%);
            --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--primary-bg);
        }

        .section-hero {
            background: var(--primary-bg);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section-hero ul {
            list-style-type: disc !important;
            padding-left: 20px !important;
        }

        .section-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(74, 144, 226, 0.03) 0%, rgba(155, 89, 182, 0.03) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .image-gallery {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .image-gallery:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

.content-section {
            background: white;
            padding: 80px 0;
            margin: 60px 0;
            border-radius: 30px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .content-section h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .content-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 25px;
            text-align: justify;
        }

        .content-section ul {
            list-style-type: disc !important;
            padding-left: 20px !important;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-hero {
                padding: 60px 0;
            }
            
            .stats-section {
                padding: 30px 20px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }