html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #e8e8e8;
    color: #333;
}

h2 {
    color: #008080;
    margin-bottom: 20px;
}

h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.breadcrumbs {
    padding: 10px 20px;
    font-size: 14px;
}

.btn {
    background-color: #008080;
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn2 {
    background-color: #008080;
    color: white !important;
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: small;
    margin: 8px 0px;
    display: inline-block;
}

.btn:hover {
    background-color: #006666;
    /* slightly darker teal */
    traFnsform: translateY(-2px);
    /* subtle lift */
}

section {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 67px;
}

section ul {
    list-style-type: disc;
    margin-left: 20px;
}

section ol {
    margin-left: 20px;
}

section p {
    margin: 6px 0px;
}

@media (max-width: 768px) {
    header .container .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: block !important;
    }
}