.bio-block {
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-in;
}
.bio-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.bio-text {
    flex-grow: 1;
    min-width: 300px;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
.bio-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    font-weight: 900;
    color: #F5A623;
    margin-bottom: 15px;
}
.bio-text p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
}
.bio-text .highlight {
    font-weight: 700;
    color: #F5A623;
}
.bio-image {
    width: 320px;
    height: 220px;
    background: #fff;
    padding: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5A623;
    transition: transform 0.3s ease;
}
.bio-image:hover {
    transform: scale(1.05);
}
.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer {
    background: #000000;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    font-size: 1em;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (min-width: 1200px) {
    .bio-text {
        flex-grow: 0;
        max-width: 600px;
    }
    .bio-image {
        width: 400px;
        height: 300px;
    }
}
@media (max-width: 768px) {
    .bio-block {
        padding: 20px;
    }
    .bio-content {
        flex-direction: column;
        gap: 20px;
    }
    .bio-text {
        max-width: 100%;
        padding: 10px;
    }
    .bio-image {
        width: 100%;
        max-width: 320px;
        height: 220px;
    }
}