.membership-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    font-family: 'Arial Black', sans-serif;
}

.overlay-text .line1 {
    font-size: 50px;
    font-weight: bold;
    color: #ff6600;
}

.overlay-text .line2 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.overlay-text .line3 {
    font-size: 40px;
    font-weight: bold;
    color: #ff6600;
}

.membership-header {
    width: 100%;
    margin-top: 40px;
}

.plans-header {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

.plans-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 3px;
}

.container {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.plans-row {
    display: flex;
    overflow-x: scroll;
    padding: 10px;
    gap: 20px;
}

.plan-box {
    min-width: 300px;
    border: 1px solid #ccc;
    background-color: #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.plan-box h3 {
    margin-bottom: 10px;
}

.plan-box h4 {
    margin-bottom: 10px;
}

.plan-box p {
    margin-bottom: 10px;
}

.plan-box ul {
    margin-bottom: 20px;
}

.plan-box button {
    display: block;
    margin: 10px auto;
    padding: 10px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-style: italic;
}

.plan-box button:hover {
    background: #ff6600;
}

.promo-container {
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: center;
}

.promo-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.promo-container p {
    margin-bottom: 10px;
}

.avail-button {
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.avail-button:hover {
    background-color: #777;
}

/* POPUP FORM*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.popup-form h2 {
    margin-bottom: 20px;
}

.popup-form label {
    display: block;
    margin-bottom: 10px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.popup-form button {
    padding: 10px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.popup-form button:hover {
    background-color: #777;
}

.close-button {
    margin-top: 10px;
    background-color: red;
}