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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b5d52;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.4);
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    border-radius: 8px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300;
}

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 250px;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #6b5d52;
}

.card-content p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #6b5d52;
}

.services-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6b5d52;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a58c6f;
    margin-bottom: 20px;
}

.service-btn {
    background: #6b5d52;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #5a4d43;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-card {
    background: #f8f6f3;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #6b5d52;
}

.form-card p {
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a58c6f;
}

.btn-submit {
    background: #6b5d52;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #5a4d43;
}

.gallery-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #6b5d52;
}

.gallery-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    display: block;
}

.footer {
    background-color: #3d352f;
    color: #d4c4b0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #d4c4b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #524a44;
    padding-top: 30px;
    text-align: center;
    color: #b8a997;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

.cookie-content a {
    color: #a58c6f;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-accept {
    background: #6b5d52;
    color: #ffffff;
}

.btn-accept:hover {
    background: #5a4d43;
}

.btn-reject {
    background: #555;
    color: #ffffff;
}

.btn-reject:hover {
    background: #444;
}

.page-header {
    background-color: #f8f6f3;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #6b5d52;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    align-items: center;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
}

.text-content {
    flex: 1 1 400px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #6b5d52;
}

.text-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #6b5d52;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background: #f8f6f3;
    padding: 35px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #6b5d52;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #6b5d52;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

.workshop-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.workshop-image img {
    width: 100%;
    height: 500px;
    display: block;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 450px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    font-size: 2rem;
    color: #6b5d52;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #a58c6f;
}

.service-detail-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b5d52;
    font-weight: 700;
}

.service-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
}

.btn-primary {
    background: #6b5d52;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #5a4d43;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.cta-card {
    background: #6b5d52;
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-card h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    background: #ffffff;
    color: #6b5d52;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1 1 400px;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #6b5d52;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #6b5d52;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    height: 500px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    text-align: center;
    color: #6b5d52;
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-description {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.location-description h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #6b5d52;
}

.location-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-card {
    background: #f8f6f3;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #6b5d52;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #6b5d52;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.service-confirmation {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.selected-service {
    font-size: 1.1rem;
    color: #6b5d52;
}

.selected-service strong {
    color: #a58c6f;
}

.additional-info {
    color: #777;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #ffffff;
    color: #6b5d52;
    border: 2px solid #6b5d52;
    padding: 13px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #6b5d52;
    color: #ffffff;
}

.next-steps {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #6b5d52;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6b5d52;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6b5d52;
}

.step-card p {
    color: #666;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #6b5d52;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #6b5d52;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #6b5d52;
}

.legal-page p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #a58c6f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6b5d52;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        margin: 10px 0;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .card {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .content-card,
    .content-card.reverse,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-card h1 {
        font-size: 1.8rem;
    }
}