.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #fff9f9 0%, #fce4ec 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-top: 10px;
}

.text-center {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bio-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.bio-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.bio-image .img-frame {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--secondary-color);
    position: relative;
    background: #fff;
    transition: transform 0.3s ease;
}

.bio-image:hover .img-frame {
    transform: translateY(-10px);
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--primary-dark);
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.bio-content {
    flex: 1.2;
}

.bio-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.bio-content .lead {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.signature {
    margin-top: 40px;
}

.sign-font {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--secondary-color);
    display: block;
    margin-top: 5px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: transparent;
    width: 50%;
    box-sizing: border-box;
}

.left { left: 0; }
.right { left: 50%; }

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.left::after { right: -10px; }
.right::after { left: -10px; }

.timeline-content {
    padding: 25px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-left-color: var(--primary-color);
}

.timeline-content .date {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fdfdfd;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    margin: 0 0 5px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expert-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #fff0f3;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.expert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 117, 140, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #fff0f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-dark);
    transition: 0.4s;
}

.expert-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.expert-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .bio-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .bio-image .img-frame {
        max-width: 320px;
        height: 400px;
        box-shadow: 15px 15px 0 var(--secondary-color);
    }
    
    .floating-badge {
        right: 0;
        bottom: 20px;
    }

    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }

    .timeline-item::after {
        left: 22px;
    }

    .right {
        left: 0;
    }
    
    .left::after, .right::after {
        left: 22px;
        right: auto;
    }
}