* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #d4593a;
    --dark-bg: #0a0a0a;
    --dark-teal: #1a3d3d;
    --navy-blue: #2d4563;
    --beige: #dcd5c8;
    --white: #ffffff;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --success: #22c55e;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
}

.logo {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

/* Page Header */
.page-header {
    margin-top: 60px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-teal) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content */
.memberships-content {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Membership Cards */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.membership-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.membership-card.featured {
    border: 3px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(212, 89, 58, 0.05), rgba(255, 255, 255, 1));
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.membership-card h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;

}

.price {
    font-size: 3rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.billing-period {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.checkmark {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.btn-membership {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.btn-membership:hover {
    background: #c14d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 89, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* Day Pass Section */
.day-pass-section {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
}

.day-pass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.day-pass-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.day-pass-card h4 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.day-pass-price {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--navy-blue);
    color: var(--white);
    padding: 4rem 0;
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 968px) {
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .day-pass-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}