:root {
    --bs-primary: #6f42c1;
    --bs-primary-rgb: 111, 66, 193;
}

.hero-section {
    background: linear-gradient(135deg, #6f42c1 0%, #0d6efd 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 40px;
}

.example-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.code-block {
    background-color: #282c34;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    margin: 15px 0;
    color: #abb2bf;
    overflow-x: auto;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(111, 66, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.nav-demo {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
}

.navbar-demo {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.method-card {
    transition: transform 0.3s;
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
}

.custom-nav {
    margin-bottom: 20px;
}
