* {
    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;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3e2723;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-notice {
    padding: 0.4rem 0.9rem;
    background-color: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #e65100;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #3e2723;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 2rem auto;
    max-width: 1400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-card-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #d7ccc8;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-content {
    padding: 3rem 2.5rem;
    text-align: center;
}

.hero-card-content h1 {
    font-size: 2.8rem;
    color: #3e2723;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-card-content p {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6d4c41;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #5d4037;
}

.intro-cards {
    padding: 4rem 0;
    background-color: #fafafa;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #efebe9;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.8rem;
}

.card-body h3 {
    font-size: 1.4rem;
    color: #3e2723;
    margin-bottom: 0.8rem;
}

.card-body p {
    color: #5d4037;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 0;
    background-color: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6d4c41;
    margin-bottom: 3.5rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    flex: 1 1 calc(50% - 2rem);
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #ffb74d;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff6f00;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d7ccc8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #3e2723;
    margin-bottom: 1rem;
}

.service-info p {
    color: #5d4037;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #6d4c41;
}

.price-unit {
    font-size: 0.95rem;
    color: #8d6e63;
}

.btn-service-select {
    padding: 0.9rem 2rem;
    background-color: #8d6e63;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service-select:hover {
    background-color: #6d4c41;
}

.order-form-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.form-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 2.2rem;
    color: #3e2723;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5d4037;
    margin-bottom: 2.5rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #3e2723;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #d7ccc8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #6d4c41;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

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

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fff;
}

.disclaimer-box {
    background-color: #fff3e0;
    border-left: 4px solid #ff6f00;
    padding: 1.5rem;
    border-radius: 6px;
}

.disclaimer-box p {
    color: #5d4037;
    line-height: 1.7;
}

.footer {
    background-color: #3e2723;
    color: #d7ccc8;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bcaaa4;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #bcaaa4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5d4037;
    color: #bcaaa4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 1.5rem;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex-grow: 1;
    color: #3e2723;
}

.cookie-content a {
    color: #6d4c41;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #6d4c41;
    color: #fff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #3e2723;
}

.btn-reject:hover {
    background-color: #bdbdbd;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    background-color: #fafafa;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #3e2723;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #5d4037;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 0;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #3e2723;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #3e2723;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .card-grid {
        flex-direction: column;
    }

    .feature-card {
        max-width: 100%;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
    }
}