/* Support Groups Page Styles */

.hero {
    padding: 4rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .row {
    row-gap: 0.75rem;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-text {
    padding-top: 1rem;
}

.hero-text p {
    max-width: 860px;
    margin: 0 auto 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-text ul {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    padding-left: 1.25rem;
}

.hero-text li {
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Locations Section */
.locations {
    text-align: center;
    margin-bottom: 3rem;
}

.locations h2 {
    margin-bottom: 2rem;
}

/* Override board-member-container for locations */
.locations .board-member-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Location Cards */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px; /* Increased from 800px */
    margin: 0 auto;
    text-align: center;
}

.location-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 2rem; /* Keep padding the same or reduce it */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--primary-color);
    width: 100%;
}

.location-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Registration Information */
.registration-info {
    margin-top: 3rem;
    text-align: center;
    padding-bottom: 3rem;
}

.registration-content {
    width: min(100%, 800px);
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-text);
    border-radius: 8px;
}

.registration-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .location-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
    
    .location-card {
        flex: 1;
        max-width: 350px;
    }
    
    .registration-content {
        max-width: 900px;
    }
}
