@charset "utf-8";
/* CSS Document */
.documentation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .docs-section {
            margin-bottom: 50px;
        }
        .docs-section h2 {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .docs-section h2 i {
            margin-right: 10px;
            color: #3498db;
        }
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .doc-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            transition: transform 0.3s ease;
        }
        .doc-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .doc-item i.fa-file-pdf {
            font-size: 2em;
            color: #e74c3c;
            margin-bottom: 10px;
        }
        .doc-item h3 {
            margin: 10px 0;
            color: #2c3e50;
            font-size: 1.1em;
        }
        .doc-download {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9em;
            transition: background 0.3s ease;
        }
        .doc-download:hover {
            background: #2980b9;
        }
