* {
    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: #2C1810;
    background-color: #FFF8F0;
}

.main-nav {
    background-color: #2C1810;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F4E4C1;
    letter-spacing: 0.5px;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #A08060;
    background-color: rgba(244, 228, 193, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #FFF8F0;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2C1810;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5C4A3A;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #8B4513;
    color: #FFF8F0;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8B4513;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #8B4513;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #8B4513;
    color: #FFF8F0;
}

.split-intro {
    display: flex;
}

.split-left {
    flex: 1;
    overflow: hidden;
}

.split-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #F4E4C1;
}

.content-box {
    max-width: 540px;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.content-box p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #5C4A3A;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #FFF8F0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #5C4A3A;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2C1810;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: #5C4A3A;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1.2rem;
}

.select-service {
    width: 100%;
    background-color: #8B4513;
    color: #FFF8F0;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #A0522D;
}

.select-service.selected {
    background-color: #2D5016;
}

.form-split {
    display: flex;
}

.form-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #FFFFFF;
}

.form-container {
    max-width: 540px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.form-intro {
    margin-bottom: 2rem;
    color: #5C4A3A;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2C1810;
}

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

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

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

.btn-submit {
    width: 100%;
    background-color: #8B4513;
    color: #FFF8F0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.form-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFF8F0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #FFF8F0;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: #F4E4C1;
}

.location-split {
    display: flex;
}

.location-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #F4E4C1;
}

.location-content {
    max-width: 540px;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2C1810;
}

.location-content p {
    margin-bottom: 2rem;
    color: #5C4A3A;
}

.location-details {
    margin-bottom: 2rem;
}

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

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2C1810;
    font-size: 1.1rem;
}

.detail-item p {
    margin-bottom: 0;
    color: #5C4A3A;
}

.location-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    padding: 3rem;
    text-align: center;
    color: #F4E4C1;
    font-size: 1.2rem;
}

.main-footer {
    background-color: #2C1810;
    color: #F4E4C1;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    margin-bottom: 0.8rem;
    color: #D4C4B0;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #D4C4B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #F4E4C1;
}

.footer-bottom {
    border-top: 1px solid #5C4A3A;
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.85rem;
    color: #A08060;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: #D4C4B0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C1810;
    color: #F4E4C1;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie.accept {
    background-color: #8B4513;
    color: #FFF8F0;
}

.btn-cookie.accept:hover {
    background-color: #A0522D;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #F4E4C1;
    border: 2px solid #F4E4C1;
}

.btn-cookie.reject:hover {
    background-color: rgba(244, 228, 193, 0.1);
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #5C4A3A;
}

.thanks-service {
    background-color: #F4E4C1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-service strong {
    color: #8B4513;
    font-size: 1.3rem;
}

.page-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.page-header {
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.page-header p {
    font-size: 1.1rem;
    color: #5C4A3A;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2C1810;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #5C4A3A;
}

.page-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-section {
    flex: 1;
    min-width: 280px;
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.contact-section p {
    margin-bottom: 0.8rem;
    color: #5C4A3A;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .form-split,
    .location-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}