body {
                margin-top : -32px !important;

}/* Navigation Improvements */
.nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.nav-prev, .nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-center {
    flex-shrink: 0;
}

.container {
    max-width: 1700px;
    margin : 0 auto;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    color: #dc2626;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.nav-button:hover {
    background-color: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    border-color: rgba(220, 38, 38, 0.2);
}

.nav-button-primary {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 1.5rem;
    padding: 0;
    justify-content: center;
}

.nav-button-primary:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

@media (max-width: 640px) {
    .nav-section {
        padding: 15px 0;
    }
    .nav-button {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    .nav-button-primary {
        width: 45px;
        height: 45px;
    }
    .nav-button .hidden {
        display: none;
    }
}
