/* SLA Documentation Styles */
.sla-documentation {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.sla-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.sla-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.sla-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
}

.sla-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.sla-section {
    margin-bottom: 40px;
}

.sla-section:last-child {
    margin-bottom: 0;
}

.sla-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-family: 'Montserrat', sans-serif;
}

.sla-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

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

.sla-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.sla-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.sla-sublist {
    margin-left: 20px;
    font-size: 1rem;
    color: #6c757d;
}

.sla-sublist:before {
    content: "◦";
    color: #6c757d;
}

.sla-footer {
    margin-top: 50px;
    text-align: center;
}

.sla-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 30px 0;
}

.sla-signature {
    font-size: 1.5rem;
    color: #6c757d;
    margin: 0;
    font-family: 'Roboto Mono', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sla-documentation {
        padding: 80px 0 40px 0;
    }
    
    .sla-title {
        font-size: 2.5rem;
    }
    
    .sla-subtitle {
        font-size: 1.4rem;
    }
    
    .sla-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .sla-section-title {
        font-size: 1.3rem;
    }
    
    .sla-text,
    .sla-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sla-title {
        font-size: 2rem;
    }
    
    .sla-subtitle {
        font-size: 1.2rem;
    }
    
    .sla-content {
        padding: 20px 15px;
    }
    
    .sla-section-title {
        font-size: 1.2rem;
    }
}

/* Animation for smooth loading */
.sla-documentation {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */
.sla-section:hover .sla-section-title {
    color: #3498db;
    transition: color 0.3s ease;
}

.sla-list li:hover {
    color: #2c3e50;
    transition: color 0.3s ease;
}

/* Additional interactive elements */
.print-sla-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
}

.print-sla-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}


.sla-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.sla-toc h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.sla-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sla-toc li {
    margin-bottom: 8px;
}

.sla-toc a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.sla-toc a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.sla-section.active .sla-section-title {
    color: #3498db;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.sla-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.sla-notification.show {
    transform: translateX(0);
}

.sla-notification.success {
    background: #28a745;
}

.sla-notification.error {
    background: #dc3545;
}

/* Print styles */
@media print {
    .sla-documentation {
        background: white;
        padding: 0;
    }
    
    .sla-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .sla-title {
        color: black;
    }
    
    .sla-section-title {
        color: black;
        border-bottom-color: black;
    }
    
    .print-sla-btn,
    .sla-toc {
        display: none;
    }
}
