/* Enable scrolling for the about page only */
body {
    overflow-y: auto !important;
    height: auto !important;
    background-attachment: fixed; /* Hides the seams between dirt tiles during scroll */
}

/* Custom Scrollbar matching your site's orange/brown theme */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: #c77a2a; /* Your exact button color */
    border-radius: 10px;
    border: 3px solid #2a1e14;
}

/* Fixes the layout to stretch and center on the page */
.about-layout {
    display: block !important;
    max-width: 1100px;
    margin: 0 auto;
    height: auto !important;
}

.full-width {
    width: 100% !important;
    flex: none !important;
    margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
    .topbar {
        height: auto;
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }
    .title h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-layout {
        padding: 10px;
    }
}
