.profil-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 850px;
    margin: 2rem auto;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #007bff;
}

.titles h1 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.2rem;
}

.subtitle {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

h3 {
    margin-bottom: 1rem;
    color: #222;
}

.about p {
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.hobbies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hobbie-tag {
    background: #e7f3ff;
    color: #007bff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #cce5ff;
}