body {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../gym.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000 0%, #000 50%, transparent 100%);
    z-index: -1;
}

header {
    z-index: 1;
}

.buttons {
    display: flex;
}

.buttons button {
    border: none;
    padding: 8px 20px; /* Smaller padding for header buttons (overrides common if using .btn-primary/.btn-secondary) */
    border-radius: 20px;
    font-size: 1em;
    cursor: pointer;
    margin-left: 10px;
}

.content {
    text-align: left;
    max-width: 600px;
    padding: 50px;
    flex-grow: 1;
    z-index: 1;
    align-self: flex-start; /* Align content to the left */
}

.headline {
    font-size: 3em;
    margin-bottom: 10px;
    color: #888; /* Gray for "Get started for" */
}

.price {
    color: #fff; /* White for the price */
}

.tagline {
    font-size: 1.2em;
    color: #888;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.features {
    display: flex;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 1em;
}

.feature::before {
    content: '✓';
    color: rgb(227, 25, 54);
    margin-right: 10px;
    font-weight: bold;
}

footer {
    margin-top: auto;
    z-index: 1;
    width: 100%;
}
