
.license-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .license-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 3rem;
        margin-bottom: 2rem;
        border-left: 5px solid #667eea;
    }
    
    .license-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .license-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2rem;
        color: white;
    }
    
    .license-type {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .license-section {
        margin-bottom: 2.5rem;
    }
    
    .license-section h3 {
        color: #2d3748;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .license-section h3 i {
        margin-right: 0.5rem;
        color: #667eea;
    }
    
    .license-list {
        list-style: none;
        padding: 0;
    }
    
    .license-list li {
        background: #f8fafc;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        border-left: 4px solid #667eea;
        display: flex;
        align-items: flex-start;
    }
    
    .license-list li i {
        color: #667eea;
        margin-right: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .license-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .license-card-small {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 4px solid #667eea;
    }
    
    .license-card-small h4 {
        color: #2d3748;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .license-card-small h4 i {
        margin-right: 0.5rem;
        color: #667eea;
    }
    
    .alert-box {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 8px;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
    }
    
    .alert-box i {
        color: #f39c12;
        margin-right: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .success-box {
        background: #d4edda;
        border: 1px solid #c3e6cb;
        border-radius: 8px;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
    }
    
    .success-box i {
        color: #28a745;
        margin-right: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .btn-download {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    
    .btn-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        text-decoration: none;
        color: white;
    }
    
    .btn-download i {
        margin-right: 0.5rem;
    }
    
    .toc {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .toc h4 {
        color: #2d3748;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .toc ul {
        list-style: none;
        padding: 0;
    }
    
    .toc li {
        margin-bottom: 0.5rem;
    }
    
    .toc a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }
    
    .toc a:hover {
        text-decoration: underline;
    }
