
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5; 
    padding: 40px 20px;
}


.container {
    max-width: 800px;
    margin: 0 auto; 
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

/* --- Header Styling --- */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 20px;
    border: 3px solid #f0f2f5;
}

h1 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

/* --- Inhaltsbereich Styling --- */
section {
    margin-bottom: 35px;
}

h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

p {
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

/* --- Footer & Kontakt Styling --- */
.contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

address {
    font-style: normal;
    margin-bottom: 25px;
    line-height: 1.8;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Social Media Buttons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; 
}

.social-media a {
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px; 
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.social-media a:hover {
    background-color: #555;
    text-decoration: none;
}

/* --- Mobile Anpassung (Smartphones) --- */
@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }
}