.join-page .page-hero-copy {
    background:
        radial-gradient(circle at top right, rgba(10, 49, 140, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(237, 234, 25, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 241, 0.98) 100%);
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.join-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    border-top: 4px solid var(--scout-green);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(17, 39, 24, 0.14);
    border-top-color: var(--scout-blue);
}

.card-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(10, 49, 140, 0.08);
    color: var(--scout-blue);
    font-size: 2.1rem;
    box-shadow: inset 0 0 0 1px rgba(10, 49, 140, 0.08);
}

.join-card h3 {
    margin-bottom: 16px;
    color: var(--scout-green-deep);
    font-size: 1.55rem;
    line-height: 1.2;
}

.join-card p {
    flex-grow: 1;
    margin-bottom: 28px;
    color: var(--text-muted);
    line-height: 1.75;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--scout-green) 0%, #46764d 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(53, 94, 59, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(53, 94, 59, 0.24);
    background: var(--scout-blue);
}

.location-layout {
    align-items: stretch;
}

.location-text .section-header {
    margin-bottom: 18px;
}

.location-details {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.location-details li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(53, 94, 59, 0.06);
}

.location-details i {
    color: var(--scout-blue);
    font-size: 1.28rem;
    margin-top: 4px;
}

.location-details span {
    color: var(--text-muted);
    line-height: 1.65;
}

.location-details strong {
    display: block;
    margin-bottom: 4px;
    color: var(--scout-green-deep);
}

.map-container {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.92);
    min-height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
}

@media (max-width: 980px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .join-card {
        padding: 24px;
        align-items: stretch;
    }

    .btn-card {
        width: 100%;
    }

    .map-container iframe {
        min-height: 320px;
    }
}
