* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%; 
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff; 
    color: #333; 
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%; 
    max-width: 1200px; 
    margin: auto;
    padding: 10px; 
}

header {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    background: #f1ebdd;
    color: #333; 
    padding: 1em; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.content {
    margin-top: 130px;
}
.logo {
    height: 100px;
    margin-right: 1em;
}

nav {
    flex-grow: 1; 
    display: flex; 
}

nav ul {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0; 
    display: flex; 
    justify-content: flex-start; 
}

nav ul li {
    margin: 0 10px; 
}

nav a {
    color: #786c3b;
    text-decoration: none;
    font-weight: bold; 
    transition: color 0.3s; 
}

nav a:hover {
    color: #f76c6c; 
}

.header-button {
    background: #8b9467;
    color: #fff; 
    padding: 10px 10px;
    cursor: pointer;
    width: 180px;
    transition: background 0.3s;
    border-radius: 8px;
}

.header-button:hover {
    background: #8b9467;
}

.cta-button {
    background: #2f4f7f;
    color: #fff; 
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.4s;
    margin-left: auto;
    border-radius: 4px;
}

.cta-button:hover {
    background: #f76c6c; 
}
.hero-button {
    background: #ff7f50;
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.4s;
    margin-left: auto;
    border-radius: 4px;
}
.hero-button:hover {
    background: #f76c6c;
}

.hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white; 
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.3); 
    padding: 20px;
}

section {
    padding: 40px 0;
    border-top: 1px solid #ddd; 
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-member {
    width: 48%;
    text-align: center;
    margin-bottom: 20px;
}

.money {
    font-family:'Brush Script MT', cursive;
    font-size: 23px;
}

.team-member img {
    border-radius: 50%;
}
.team-member ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.team-member li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.team-member li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.service {
    padding: 20px;
    border: 1px solid #ddd; 
    border-radius: 5px;
    margin-bottom: 20px;
}

.testimonial {
    border-left: 2px solid #ff7f50; 
    padding-left: 15px;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333; 
    color: white;
    margin-top: auto;
}

.contact-info {
    margin-top: 10px; 
}

.contact-info p {
    display: inline; 
}

.contact-info a:link {
    color: white;
}

.contact-info a:visited {
    color: white;
}

.contact-info i {
    margin-right: 5px; 
    color: white; 
}

.gallery-grid {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
    position: relative; 
}

.gallery-image {
    width: 200px;
    height: 200px;
    border-radius: 5px; 
    transition: opacity 1s ease-in-out; 
    margin: 0 5px; 
    opacity: 1; 
}
.gallery-image.zoomed {
    transform: scale(2);
}
.price-table {
    margin: auto;
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.price-table th {
    background-color: #af9454;
    color: white;
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.price-table tr:hover {
    background-color: #ddd;
}
.footnote {
    font-size: 0.8em;
    color: #666;
}

.impressum a:link {
    color: white;
}
.impressum a:visited {
    color: white;
}

@media (max-width: 768px) {
    .team-member {
        width: 100%; 
    }

    header {
        flex-wrap: wrap; 
        position: static; 
        top: auto; 
        left: auto;
        width: 100%; 
    }
    .content {
        margin-top: auto;
    }
    nav {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin-bottom: 10px;
    }

    .header-button {
        margin-top: 10px;
    }
    .gallery-image {
        width: 150px;
        height: 150px;
    }

    .money {
        font-size: 20px;
    }
}
