        :root {
            --primary-color: #6c63ff;
            --primary-light: #8b85ff;
            --primary-dark: #564fd1;
            --django-color: #092E20;
            --django-light: #0C4B33;
            --django-green: #44B78B;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --light-gray: #e9ecef;
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            --gradient-django: linear-gradient(135deg, var(--django-color) 0%, var(--django-green) 100%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            background-color: #fefefe;
        }
        
        h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .django-hero {
            background: var(--gradient-django);
            padding: 10rem 0 6rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .django-hero:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            animation: pulse 15s infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.1; }
        }
        
        .django-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            background-color: white;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .django-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(9, 46, 32, 0.1);
        }
        
        .django-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: var(--gradient-django);
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(9, 46, 32, 0.2);
        }
        
        .tech-badge {
            display: inline-block;
            background-color: white;
            color: var(--dark-color);
            padding: 8px 20px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .tech-badge:hover {
            background: var(--gradient-django);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(9, 46, 32, 0.3);
        }
        
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 40px;
        }
        
        .process-step:before {
            content: '';
            position: absolute;
            left: 35px;
            top: 0;
            bottom: -40px;
            width: 2px;
            background: var(--light-gray);
        }
        
        .process-step:last-child:before {
            display: none;
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-django);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(9, 46, 32, 0.2);
        }
        
        .showcase-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .showcase-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(9, 46, 32, 0.15);
        }
        
        .showcase-card .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        
        .benefits-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--django-green);
            font-size: 1.2rem;
        }
        
        .bg-django-light {
            background-color: rgba(9, 46, 32, 0.03);
        }
        
        .btn-django {
            background: var(--gradient-django);
            color: white;
            border: none;
            font-weight: 600;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(9, 46, 32, 0.3);
        }
        
        .btn-django:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(9, 46, 32, 0.4);
            color: white;
        }
        
        .django-chip {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.8rem;
        }
        
        .django-feature-img {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }
        
        .django-feature-img:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(9, 46, 32, 0.1);
        }