.jumbotron {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0;
}
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.hljs {
    border-radius: 5px;
    padding: 1rem;
}
.nav-pills .nav-link.active {
    background-color: #0d6efd;
}

.example-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}
.process-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin: 0.5rem;
}
.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    background-color: #0d6efd;
}
.step-arrow {
    flex: 0 0 40px;
    text-align: center;
    font-size: 1.5rem;
    color: #6c757d;
}
.interactive-demo {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}
.demo-result {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: monospace;
    white-space: pre-wrap;
}
.method-signature {
    background-color: #e9ecef;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
    font-family: monospace;
}
.comparison-table th, .comparison-table td {
    text-align: center;
}
