
    .inovasi {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .section-header {
        background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
        color: white;
        text-align: center;
        padding: 30px 20px;
        position: relative;
        overflow: hidden;
    }
    
    .section-header::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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    
    .section-header p {
        font-size: 1.1rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }
    
    .inovasi-content {
        padding: 40px 20px;
    }
    
    .embed-container {
        margin-bottom: 40px;
        background: #f8f9fa;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .embed-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .embed-header {
        background: linear-gradient(135deg, #1565C0 0%, #2196F3 100%);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .embed-header.form-header {
        background: linear-gradient(135deg, #E65100 0%, #FF9800 100%);
    }
    
    .embed-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
    
    .embed-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .embed-header p {
        opacity: 0.9;
        margin-top: 5px;
        font-size: 0.9rem;
    }
    
    .embed-wrapper {
        position: relative;
        background: white;
        border-radius: 0 0 15px 15px;
        overflow: hidden;
    }
    
    .embed-pdf {
        height: 600px;
        position: relative;
    }
    
    .embed-form {
        height: 700px;
        position: relative;
    }
    
    .embed-pdf iframe,
    .embed-form iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 0 0 15px 15px;
    }
    
    .loading-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 50%, #f0f0f0 50%, #f0f0f0 75%, transparent 75%, transparent);
        background-size: 20px 20px;
        animation: loading 1s linear infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    @keyframes loading {
        0% { background-position: 0 0; }
        100% { background-position: 20px 20px; }
    }
    
    .loading-text {
        background: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        color: #666;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile First (Default) */
    @media (max-width: 767px) {
        .section-header h2 {
            font-size: 2rem;
        }
        
        .inovasi-content {
            padding: 20px 15px;
        }
        
        .embed-pdf {
            height: 500px;
        }
        
        .embed-form {
            height: 600px;
        }
        
        .embed-header {
            padding: 15px;
        }
        
        .embed-header h3 {
            font-size: 1.1rem;
        }
    }
    
    /* Tablet */
    @media (min-width: 768px) {
        .inovasi-content {
            padding: 40px 30px;
        }
        
        .embed-pdf {
            height: 650px;
        }
        
        .embed-form {
            height: 750px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
        }
    }
    
    /* Desktop */
    @media (min-width: 1024px) {
        .inovasi-content {
            padding: 50px 40px;
        }
        
        .embed-container {
            margin-bottom: 40px;
        }
        
        .embed-pdf {
            height: 700px;
        }
        
        .embed-form {
            height: 700px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
        }
    }
    
    /* Large Desktop */
    @media (min-width: 1200px) {
        .embed-pdf {
            height: 750px;
        }
        
        .embed-form {
            height: 750px;
        }
    }
    
    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
        .embed-container {
            transition: none;
        }
        
        .loading-overlay {
            animation: none;
        }
        
        .section-header::before {
            animation: none;
        }
    }