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

body {
    font-family: 'Felipa', cursive;
    line-height: 1.6;
    color: #3d2914;
    background: #f5f5dc;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #8b4513;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f5deb3;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #f5deb3;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #d2b48c;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #3d2914;
    font-family: 'Felipa', cursive;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2em;
    color: #5a3d2b;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-content .subtitle {
    font-size: 1.4em;
    color: #5a3d2b;
    font-family: 'Felipa', cursive;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-content .subtitle .seit {
    display: inline-block;
    margin-top: 8px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #a0522d;
    color: #f5deb3;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    transition: background 0.3s;
    border-radius: 4px;
}

.btn:hover {
    background: #8b4513;
}

.services {
    padding: 80px 50px;
    background: #f5f5dc;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #3d2914;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px;
    background: #fff8dc;
    border: 2px solid #d2b48c;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #3d2914;
}

.service-card p {
    color: #5a3d2b;
}

.service-card .price {
    font-size: 1.2em;
    color: #8b4513;
    font-weight: bold;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #d2b48c;
}

.about {
    padding: 80px 50px;
    background: #d2b48c;
}

.about-content {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.about-content img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #3d2914;
    font-weight: 700;
}

.about-text p {
    color: #5a3d2b;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact {
    padding: 80px 50px;
    background: #f5f5dc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #3d2914;
    font-weight: 700;
}

.contact-content {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #d2b48c;
    font-family: 'Felipa', cursive;
    font-size: 1em;
    background: #fff8dc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.contact-info {
    flex: 1;
    padding: 40px;
    background: #8b4513;
    color: #f5deb3;
}

.contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #f5deb3;
}

.contact-info p {
    color: #deb887;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #3d2914;
    color: #d2b48c;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-content img {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}
