/* Documentation Page Styles */
.documentation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.doc-section {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.doc-section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-section-title i {
    font-size: 28px;
}

.doc-section-content {
    padding: 30px;
}

.doc-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.doc-item h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.doc-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.doc-item .btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.doc-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.documentation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.documentation-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.documentation-header h5 {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
}

/* Footer Styles */
.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .documentation-container {
        padding: 20px 15px;
    }
    
    .doc-section-content {
        padding: 20px;
    }
    
    .documentation-header {
        padding: 40px 20px;
    }
    
    .documentation-header h2 {
        font-size: 36px;
    }
    
    .documentation-header h5 {
        font-size: 18px;
    }
}
