
.about-hero {
    background-color: var(--bg-peach);
    padding: 80px 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(217,48,92,0.15);
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 30px;
}

.cert-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 30px;
    padding: 28px 32px;
}

.cert-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(217, 48, 92, 0.25);
}

.guide-img-frame {
    position: relative;
    height: 100%;
}

.cert-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.guide-profile-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 60px;
    transition: transform 0.3s;
}

.guide-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.guide-full-img {
    height: 100%;
    min-height: 450px; 
    width: 100%;
    object-fit: cover;
}

.text-pink {
    color: var(--brand-pink);
}


.skill-tag {
    background-color: #fafafa;
    border: 1px solid #eee;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.tag-lang {
    background-color: var(--bg-peach);
    border-color: #ffe4d1;
    color: var(--text-dark);
}


.cta-card {
    background: linear-gradient(135deg, var(--brand-pink), #c22850);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(217, 48, 92, 0.25);
}

.cta-card h2 {
    color: #fff;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
}

.cta-card .btn-book {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
    .guide-full-img {
        height: 350px;
    }

    .about-hero {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 50px 0;
    }

    .cert-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .cta-card {
        padding: 40px 24px;
        border-radius: 30px;
    }
}