* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
    position: sticky;
    top: 0;  /* Keeps the top menu sticky */
    z-index: 1000; /* Ensures the menu stays on top */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    align-items: center;     
    justify-content: space-between;
    font-size: 12px;
    background-color: white; /* Add a background color for visibility */
}

.top_logo img {
    height: 60px; 
}

.Topmenu_container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    border-radius: 8px;
}

.Topmenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #037dbe;
}

.Topmenu li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.Topmenu button {
    padding: 15px 20px;
    border: none;
    background: #037dbe;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px; 
    font-family: "Poppins", sans-serif;
}

/* The scrollable content wrapper */
.scroll_wrapper {
    max-height: calc(100vh - 120px); /* Adjust based on the height of the sticky header */
    overflow-y: auto; /* Enables scrolling */
    padding: 20px; /* Padding to separate the content from the edges */
}

.content_container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    gap: 20px;
  
}
.scroll_wrapper::-webkit-scrollbar {
    display: none; /* Hides the scrollbar */
}
/* Optional - Add smooth scroll behavior */
.scroll_wrapper {
    scroll-behavior: smooth;

}
.Definitions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    padding-left: 20px;
}
.item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer{
    display: flex;
    justify-content: space-between;
    background-color: #e6f0fa;
    width: 100%;
    padding:  30px;
}
.hidden{
    display: none;
}
