.header {
    text-align: center;
    padding: 40px 20px;
}

.header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.chef-name {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.profile-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.profile-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .profile-image {
        flex: 1 1 250px;
        display: flex;
        justify-content: center;
    }
}
.profile-image img {
    max-width: 100%;
    border-radius: 8px;
}

.profile-content {
    flex: 2 1 400px;
}

.profile-content h3 {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.profile-content p {
    text-align: justify;
    margin-top: 10px;
    line-height: 1.6;
}

.profile-content ul {
    margin-top: 10px;
    line-height: 1.6;
}