body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header, footer {
    background-color: #36454F; /* Charcoal Grey */
    color: #fff;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
section {
    margin-bottom: 2rem;
}
h1, h2 {
    color: #2c3e50;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin-bottom: 0.5rem;
}

.services {
    margin-bottom: 2rem;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.service {
    flex: 1;
    text-align: center;
}

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service h3 {
    margin-bottom: 0.5rem;
}

.about-me {
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {       
    margin-top: 2rem;
}

footer a {
    color: #fff; /* Default link color in footer */
    text-decoration: none; /* Default link decoration */
}

footer a:visited {
    color: #b0c4de; /* Light Steel Blue for visited links, adjust to desired color */
}

.impressum {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-pic {
        margin-bottom: 1rem;
    }
}


.contact-info {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
}

.services-section {
    max-width: 1200px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center the section */
    padding: 20px; /* Add padding */
}

.service-item {
    display: flex; /* Enables flexbox layout for child elements */
    align-items: center; /* Vertically centers the items */
    margin-bottom: 20px; /* Space between service items */
}

.service-column {
    flex: 1; /* Make columns take equal space */
    padding: 10px; /* Add padding inside columns */
}

.service-image-column {
    display: flex; /* Enable flexbox layout for image column */
    justify-content: center; /* Center the image horizontally */
}

.service-image {
    width: 100%; /* Make the image take full width */
    height: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Prevent exceeding the height of its container */
    object-fit: cover; /* Scale the image nicely to cover the area */
}

.service-description-column {
    flex: 1; /* Ensure description column takes equal space */
}

hr {
    border: 0; /* Remove default border */
    height: 1px; /* Set height */
    background: #ccc; /* Color of the horizontal line */
    margin: 20px 0; /* Space around the horizontal line */
}