.about-content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 2rem;
    text-align: center;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.team-card {
    flex: 0 0 calc(33.333% - 1.334rem);
    background: #fff;
    border-radius: 0;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    border-top: 4px solid var(--green);
}

.team-photo {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
}

.team-card-avatar {
    width: 72px;
    height: 72px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.team-card-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--green);
    stroke: var(--green);
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.team-card .team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-card .team-quals {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 0.85rem;
    font-style: italic;
}

.team-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.tariff-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.tariff-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tariff-card h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--green);
    flex-shrink: 0;
}

.tariff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tariff-card ul li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.tariff-card ul li:last-child {
    border-bottom: none;
}

.tariff-card ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.wellness-callout {
    background: var(--green-light);
    border-left: 5px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.wellness-callout h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.85rem;
}

.wellness-callout p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.wellness-callout p:last-child {
    margin-bottom: 0;
}

.quals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.qual-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    border-top: 4px solid var(--green);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.qual-card-icon {
    width: 44px;
    height: 44px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qual-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--green);
}

.qual-card-credential {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
}

.qual-card-institution {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

.qualifications {
    font-size: 1rem !important;
    font-weight: 400;
    color: #ffff !important;
}

@media (max-width: 900px) {
    .team-card { flex: 0 0 calc(50% - 1rem); }
    .tariffs-grid { grid-template-columns: 1fr; }
    .quals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .team-card { flex: 0 0 100%; }
    .quals-grid { grid-template-columns: 1fr; }
}
