  /* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        :root {
            --primary-color: #3498db;
            --primary-dark: #2980b9;
            --secondary-color: #2ecc71;
            --secondary-dark: #27ae60;
            --accent-color: #9b59b6;
            --accent-dark: #8e44ad;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --gray-color: #7f8c8d;
            --light-gray: #e9ecef;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ==================== TYPOGRAPHY ==================== */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.8rem;
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        /* ==================== BUTTONS ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
            color: var(--white);
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
        }
        
        /* ==================== HEADER ==================== */
        .main-header {
            background: linear-gradient(135deg, rgba(4, 67, 119, 1) 0%, #073477ff 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-placeholder {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #8e44ad;
            font-size: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .logo-main {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .logo-tagline {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .nav-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 5px;
            transition: background-color 0.3s;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        .nav-active {
            background-color: rgba(255,255,255,0.15);
        }
        
        /* ==================== DROPDOWN MENU ==================== */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-btn {
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .dropdown-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 5px;
            z-index: 1000;
            overflow: hidden;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-content a:hover {
            background-color: #f8f9fa;
            color: rgba(57, 2, 82, 1);
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        .btn-register {
            background: #2ecc71;
        }
        
        .btn-register:hover {
            background: #27ae60;
        }
        
        /* ==================== STATISTICS BAR (NEW) ==================== */
        .card-stats {
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            margin: 15px 0;
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
            background: rgba(249, 249, 249, 0.5);
            border-radius: 8px;
        }
        
        .stat-item-small {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        .stat-emoji-small {
            font-size: 20px;
            margin-bottom: 2px;
        }
        
        .stat-count-small {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .stat-label-small {
            font-size: 10px;
            color: var(--gray-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .projects-section .stat-count-small {
            color: var(--primary-color);
        }
        
        .business-section .stat-count-small {
            color: var(--accent-color);
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero-section {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
            color: var(--white);
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background: 
                radial-gradient(circle at 20% 80%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.2) 0%, transparent 50%);
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--white), #bdc3c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-description {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 48px;
            line-height: 1.6;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ==================== FEATURES SECTION ==================== */
        .features-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-title {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--white);
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
        }
        
        .feature-title {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 16px;
        }
        
        /* ==================== HOW IT WORKS SECTION ==================== */
        .how-it-works-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa, #e8f4fc);
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 64px;
            position: relative;
        }
        
        .step-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            border: 1px solid var(--light-gray);
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 24px;
            transition: var(--transition);
        }
        
        .step-card:hover .step-number {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            transform: scale(1.1);
        }
        
        /* ==================== STATISTICS ==================== */
        .statistics {
            padding: 80px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .stats-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-color) 0%, #e8f4fc 100%);
            opacity: 0.5;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .stat-item {
            padding: 40px 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 12px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--gray-color);
            font-weight: 600;
        }
        
        /* ==================== PROJECTS & BUSINESS SECTIONS ==================== */
        .projects-section, .business-section {
            padding: 100px 0;
        }
        
        .business-section {
            background: linear-gradient(135deg, #f8f9fa, #f5f0f9);
        }
        
        .section-header-inline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px;
        }
        
        .projects-grid, .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .project-card, .business-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .project-card:hover, .business-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .video-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 10;
            backdrop-filter: blur(10px);
        }
        
        .video-badge.available {
            background: rgba(46, 204, 113, 0.9);
            color: var(--white);
            animation: pulse 2s infinite;
        }
        
        .video-badge.not-available {
            background: rgba(149, 165, 166, 0.9);
            color: var(--white);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        
        .project-card:hover .card-image img,
        .business-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .placeholder-image {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }
        
        .projects-section .placeholder-image {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        }
        
        .business-section .placeholder-image {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
        }
        
        .card-content {
            padding: 24px;
        }
        
        .card-title {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .card-description {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .card-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .projects-section .author-avatar {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        }
        
        .business-section .author-avatar {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
        }
        
        .author-info {
            min-width: 0;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--dark-color);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .author-location {
            color: var(--gray-color);
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .card-amount {
            text-align: right;
            flex-shrink: 0;
        }
        
        .amount-value {
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .projects-section .amount-value {
            color: var(--secondary-color);
        }
        
        .business-section .amount-value {
            color: var(--accent-color);
        }
        
        .card-footer {
            padding: 20px 24px;
            background: var(--light-color);
            border-top: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn-card {
            padding: 8px 20px;
            font-size: 14px;
            background: transparent;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            font-weight: 600;
        }
        
        .projects-section .btn-card {
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .projects-section .btn-card:hover {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .business-section .btn-card {
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
        }
        
        .business-section .btn-card:hover {
            background: var(--accent-color);
            color: var(--white);
        }
        
        .card-date {
            color: var(--gray-color);
            font-size: 0.85rem;
        }
        
        .see-all-container {
            text-align: center;
            margin-top: 40px;
        }
        
        /* ==================== BUSINESS INFO STYLES ==================== */
        .business-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 16px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .info-item i {
            color: var(--accent-color);
            width: 16px;
        }
        
        .info-label {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .info-value {
            color: var(--gray-color);
        }
        
        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0 0h1200v600H0z" fill="none"/><circle cx="200" cy="100" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="1000" cy="150" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="400" r="60" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.1;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 24px;
        }
        
        .cta-description {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 48px;
        }
        
        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ==================== FOOTER ==================== */
        .main-footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 24px;
            color: var(--white);
        }
        
        .footer-section p, .footer-section a {
            color: #bdc3c7;
            line-height: 1.6;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-left: 8px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* ==================== ANIMATIONS ==================== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
            100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
        }
        
        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 1.6rem; }
            
            .hero-title { font-size: 3rem; }
            .section-title { font-size: 2.5rem; }
            .cta-title { font-size: 2.5rem; }
            
            .features-grid,
            .projects-grid,
            .business-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .business-info-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            /* Header mobile */
            .main-header {
                padding: 15px 0;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            
            .logo-container {
                width: 100%;
                justify-content: center;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            
            .nav-links a {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            /* Hero section */
            .hero-section {
                padding: 120px 0 80px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
                padding: 0 15px;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }
            
            /* Sections */
            .features-section,
            .how-it-works-section,
            .statistics,
            .projects-section,
            .business-section,
            .cta-section {
                padding: 60px 0;
            }
            
            .section-header-inline {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 0 15px;
            }
            
            .features-grid,
            .projects-grid,
            .business-grid,
            .steps-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 15px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 15px;
            }
            
            /* Cards */
            .card-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            
            .card-amount {
                text-align: left;
                width: 100%;
            }
            
            .card-footer {
                flex-direction: column;
                gap: 16px;
                align-items: stretch;
            }
            
            .btn-card {
                width: 100%;
                justify-content: center;
            }
            
            .business-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* CTA */
            .cta-actions {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .cta-actions .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            
            .hero-title { font-size: 2rem; }
            .section-title { font-size: 1.8rem; }
            .cta-title { font-size: 1.8rem; }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .features-section,
            .how-it-works-section,
            .statistics,
            .projects-section,
            .business-section,
            .cta-section {
                padding: 50px 0;
            }
            
            .feature-card,
            .step-card {
                padding: 25px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .stat-item {
                padding: 25px 15px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .footer-grid {
                gap: 25px;
                padding: 0 15px;
            }
            
            /* Statistiques dans les cartes */
            .card-stats {
                padding: 10px 0;
                flex-direction: column;
                gap: 10px;
            }
            
            .stat-item-small {
                flex-direction: row;
                justify-content: center;
                gap: 15px;
            }
            
            .stat-emoji-small {
                font-size: 16px;
            }
            
            .stat-count-small {
                font-size: 13px;
            }
            
            .stat-label-small {
                font-size: 9px;
            }
            
            .business-info-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 360px) {
            .card-image {
                height: 180px;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .card-footer {
                padding: 15px 20px;
            }
            
            .video-badge {
                font-size: 11px;
                padding: 5px 12px;
                top: 12px;
                right: 12px;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 8px;
            }
            
            .nav-links a {
                width: 100%;
                justify-content: center;
            }
            
            .dropdown {
                width: 100%;
            }
            
            .dropdown-btn {
                width: 100%;
                justify-content: center;
            }
            
            .dropdown-content {
                width: 100%;
                right: auto;
                left: 0;
            }
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .header-container {
                flex-direction: row;
                position: relative;
            }
            
            .logo-container {
                justify-content: flex-start;
            }
        }
