.partnership-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 32px rgba(58, 146, 148, 0.12);
    padding: 36px 32px;
    border: 1px solid rgba(58, 146, 148, 0.15);
    border-left: 5px solid #3a9294;
}

.partnership-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(58, 146, 148, 0.15);
}

.partnership-card-header svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.partnership-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a9294;
    margin: 0;
    line-height: 1.4;
}

.partnership-card-body p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.partnership-card-body p:last-child {
    margin-bottom: 0;
}


.representatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.representative-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(58, 146, 148, 0.1);
    padding: 28px 24px;
    border: 1px solid rgba(58, 146, 148, 0.12);
    border-top: 4px solid #3a9294;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.representative-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 146, 148, 0.2);
}

.representative-region {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.representative-region span {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
}

.representative-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.representative-phone {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #3a9294;
    text-decoration: none;
    transition: color 0.25s ease;
}

.representative-phone:hover {
    color: #2f7f81;
    text-decoration: none;
}

/* ===== HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #f0fafa 0%, #fff 50%, #f0fafa 100%);
    padding: 80px 0 60px;
    margin-top: 96px;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #3a9294;
    line-height: 1.3;
    margin-bottom: 24px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.bg-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1F5863;
    margin-bottom: 12px;
}

/* ===== ASSOCIATIONS ===== */
.associations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.association-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    border: 1px solid rgba(58, 146, 148, 0.12);
    box-shadow: 0 4px 16px rgba(58, 146, 148, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.association-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 146, 148, 0.18);
    border-color: #3a9294;
}

.association-card--empty {
    border: 2px dashed rgba(58, 146, 148, 0.2);
    background: rgba(248, 250, 250, 0.6);
    box-shadow: none;
    justify-content: center;
}

.association-card--empty:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(58, 146, 148, 0.35);
}

.association-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(58, 146, 148, 0.12), rgba(58, 146, 148, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.association-name {
    font-size: 18px;
    font-weight: 700;
    color: #3a9294;
    margin-bottom: 8px;
}

.association-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.association-empty-icon {
    margin-bottom: 12px;
}

.association-soon {
    font-size: 14px;
    font-weight: 600;
    color: rgba(58, 146, 148, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .partnership-card {
        padding: 24px 18px;
    }

    .partnership-card-header {
        flex-direction: column;
        gap: 12px;
    }

    .representatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .associations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}