* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;

    display: flex;
    align-items: center;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    width: 100vw;
}

.logo a{
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: black
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}
section{
    text-align: center;
    width: 100vw;
    
}
nav a:hover {
    color: #b48a78;
}
ul{
    list-style: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: #f3f0ed;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #b48a78;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;

    margin-top: 20px;
    border: none
}
textarea{
    height: 100px;
    width: 100% !important;
}
.btn:hover {
    background: #9e7665;
}

.hero img {
    width: 200px;
    border-radius: 10px;
}

.about, .service, .preise, .agb {
    padding: 80px 10%;
    text-align: center;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.about img {
    width: 300px;
    border-radius: 10px;
}

.about-text {
    max-width: 500px;
}
.hero, .about{
    display: flex;
    justify-content: center;
    gap: 300px
}

.service-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex: 1;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 250px;
}

.price {
    font-size: 22px;
    margin-top: 10px;
    color: #b48a78;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 20px;
    background: white;
    margin-top: 50px;
    font-size: 14px;
} 
.hidden{display: none}

h2{
    margin: 30px 0 15px 0 ;
}
.container{
    width: 600px;
    max-width: 100%;
}


.kontakt-form {

    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    max-width: 100%;
    margin: auto;
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 10px;
    font-size: 16px;
}

.kontakt-form button {
    padding: 12px;
    color: white;
    border: none;
    cursor: pointer;
}

@media (max-width: 700px) {
    section{
        padding: 10px 10px;
    }
    
    .hero, .about{
        flex-direction: column;
        gap: 50px
    }
    .price-table{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    
}