.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;
}
.comparison-table th, .comparison-table td {
    text-align: center;
}
.comparison-table .json-col {
    background-color: rgba(13, 110, 253, 0.1);
}
.comparison-table .xml-col {
    background-color: rgba(40, 167, 69, 0.1);
}
.json-badge {
    background-color: #0d6efd;
    color: white;
}
.xml-badge {
    background-color: #28a745;
    color: white;
}
.feature-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;
}
.json-icon {
    background-color: #0d6efd;
}
.xml-icon {
    background-color: #28a745;
}
.code-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.code-comparison > div {
    flex: 1;
    min-width: 300px;
}
.interactive-demo {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}
.converter-box {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}
