:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e89;
            --accent-color: #ffd166;
            --text-dark: #2d3047;
            --text-light: #f8f9fa;
            --gradient-bg: linear-gradient(135deg, #ff6b35 0%, #004e89 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #f8f9fa;
        }
        .logo-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: var(--gradient-bg);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hero-section {
            background: var(--gradient-bg);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 30px 30px;
        }
        .nav-custom {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            color: var(--secondary-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 2rem 0 1.5rem;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .highlight-text {
            background-color: var(--accent-color);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 2rem 0;
        }
        .img-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .footer-section {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.5rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
