/* Шапка */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.profile-photo {
    width: 280px;
    height: 320px;
    border-radius: 15px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: transform 0.4s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.profile-info h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.profile-info h2 {
    font-size: 1.6em;
    color: #2962ff;
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-desc {
    max-width: 600px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    text-align: left;
}