.membership,
.peaks,
.peaks-heading,
.packages,
.package-boxes,
.package-box {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    width: 100%;
    height: auto;

}

.membership,
.packages,
.package-box {
    flex-direction: column;
}

.membership-headings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    max-width: 60%;
}

.membership-headings h1 {
    font-size: 26px;
    font-weight: bold;
    color: #008000;
    text-transform: uppercase;
    text-align: center;

}

.membership-headings p {
    text-align: center;
    font-weight: lighter;
}

.membership-headings a,
.package-box .join {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    margin: auto;
    color: #DD9854;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid #DD9854;
}

.peaks-heading {
    flex: 1;
    justify-content: flex-end;
}

.peaks-heading h2,
.package-heading h3,
.package-box h3 {
    color: #008000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 1px;
    margin-right: 0px;


}

.package-box h3 {
    color: #808080;
    font-weight: bold;
}

.package-box .price {
    color: #DD9854;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 24px;
}

.peaks-heading h2 {
    justify-content: flex-end;
}

.peaks-heading h2:nth-child(2) {
    color: #DD9854;
    text-align: right;
}

.peaks-content {
    flex: 2;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.content-box,
.boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boxes {
    background-color: #faebd7;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    text-align: left;
    font-weight: lighter;
    padding: 1.5rem;

}

.box-icon {
    width: 40px;
    filter: invert(91%) sepia(27%) saturate(2683%) hue-rotate(315deg) brightness(88%) contrast(96%);
}

.boxes h3 {
    color: #008000;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 1px;
    margin-right: 0px;
    justify-content: flex-end;
}


.hover-bullets {
    list-style: none;
    padding: 0;
}

.hover-bullets li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.hover-bullets li a {
    text-decoration: none;
    color: #008000;
}

.hover-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #777;
    transition: all 0.3s ease;
}

.hover-bullets li:hover {
    color: #ff8c00;
}

.hover-bullets li:hover::before {
    color: #ff4500;
    transform: scale(1.5);
}

.package-box {
    width: 100%;
    border-radius: 5px;
    border: 1px dotted #008000;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);

}

.package-box p {
    font-weight: lighter;
    text-align: justify;
}

.package-box .extra {
    color: #008000;
}


@media screen and (max-width: 999px) {}

@media screen and (max-width: 690px) {
    .membership-headings {
        max-width: 100%;
    }

    .membership-headings p {
        text-align: center;
    }

    .peaks,
    .peaks-content,
    .content-box,
    .boxes,
    .package-boxes {
        flex-direction: column;
    }

    .peaks-heading {
        justify-content: center;

    }

    .peaks-heading h2:nth-child(2) {
        text-align: center;

    }
}