/* Membership Section Styles */
.membership-info {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--primary);
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(16px, 1.8vw, 18px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.membership-steps .steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
}

.contact-methods-container {
    grid-column: 1 / -1;
    text-align: center;
}

.contact-methods-container h3 {
    color: var(--secondary);
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.contact-method {
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method .icon {
    font-size: 2rem;
    color: var(--primary);
}

.contact-method .details {
    text-align: left;
}

.contact-method h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: clamp(18px, 2vw, 20px);
}

.contact-method p {
    margin: 0.25rem 0;
    font-size: clamp(16px, 1.8vw, 18px);
}

.contact-method small {
    color: #666;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Hero Section Styles */
#lidworden .hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#lidworden .hero h2 {
    color: white;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 1rem;
}

#lidworden .hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .membership-info {
        padding: 1rem;
        gap: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 1rem;
    }

    #lidworden .hero {
        padding: 3rem 1rem;
    }
}