.coach-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coach-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.coach-photo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.coach-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #27acd9;
    margin-bottom: 1rem;
}
.coach-name {
    font-family: 'BIZ UDPGothic', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.coach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}
.coach-tag {
    background: linear-gradient(135deg, #2777d9, #6668ea);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.coach-bio {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}
.coach-pricing {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.coach-pricing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.coach-pricing-label {
    font-weight: 500;
    color: #666;
    text-align: left;
}
.coach-pricing-value {
    font-weight: 700;
    color: #0067c8;
    text-align: right;
}
.btn-apply {
    display: inline-block;
    background: linear-gradient(180deg, #12c12c 0%, #0c860e 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 3px 0 #0d5810, 0 6px 15px rgba(41, 161, 25, 0.25);
    transform: translateY(-1px);
}
.btn-apply:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #11c114, #15a412);
    color: #fff;
    box-shadow: 0 4px 0 #0d5810, 0 6px 18px rgba(41, 161, 25, 0.3);
}
.btn-apply:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #15803d, 0 2px 8px rgba(34, 197, 94, 0.2);
}
.intro-section {
    max-width: 500px;
    margin: 1rem auto 3rem;
    text-align: center;
}
.intro-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.pricing-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    text-align: left;
}
@media (max-width: 576px) {
    .coach-card {
        padding: 1.2rem;
    }
}
