body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e1e1e15b;
    color: rgb(0, 0, 0);
}

header {
    background-color: #fff;
    text-align: center;
    color: rgb(0, 0, 0);
    display: flex;
    width: auto;
    position: relative;
}

.header-text {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.hamburger-container {
    text-align: center;
    position: absolute;
    left: auto;
    right: -2%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    right: 5%;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.hamburger-container:hover .dropdown-content {
    display: block;
    opacity: 1;
}

footer {
    background-color: #151515;
    text-align: center;
    color: #fff;
    margin-top: 50px;
    padding-top: 50px;
    width: auto;
    padding-bottom: 40px;
    overflow: hidden;
}

button {
    bottom: 10px;
    width: auto;
    height: 30px;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    display: flex;
}

.button-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}
  
.back-btn {
    position: absolute;
    left: 5%;
    display: flex;
}

.forward-btn {
    position: absolute;
    right: 5%;
    display: flex;
}

svg {
    margin-right: 10px;
    margin-left: 10px;
}

li {
  padding-bottom: 5px;
}

.leaf-container {
    width: auto;
    height: 100px;
    text-align: center;
}

.leaf-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    background-color: #fff;
    padding: 10px 25px 20px;
    margin: 10px;
    border: solid 5px rgba(0, 73, 9, 0);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    margin-left: calc((100% - 60%) / 2);
    margin-right: calc((100% - 60%) / 2);
}

.bg-image {
    top: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    width: auto;
    height: 700px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.bg-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.bg-image-text h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.top-section {
    background-color: #fff;
    padding: 30px;
    margin-top: -500px;
    border: solid 5px rgba(0, 73, 9, 0);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    margin-left: calc((100% - 60%) / 2);
    margin-right: calc((100% - 60%) / 2);
    font-size: 18px;
    line-height: 1.5;
}

.top-section-container {
    display: flex;
    margin-bottom: 20px;
}

.top-section-container-text {

    flex: 1;
    padding-right: 20px;
}

.top-section-container-image {
    flex: 1;
}

.top-section-container-image img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.custom-link {
    color: black;
}