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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem 4rem 4rem;
    background-color: #fff;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6f5a42;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 2rem 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

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

.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: #1a1a1a;
    font-weight: 600;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #666;
}

.service-cards-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-large {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    overflow: hidden;
}

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

.card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.testimonials-split {
    display: flex;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-item {
    margin-bottom: 2.5rem;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-item .author {
    display: block;
    font-size: 0.95rem;
    color: #888;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f9f7f5;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6f5a42;
}

.btn-reject {
    background-color: #f0f0f0;
    color: #2c2c2c;
}

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

.page-hero {
    padding: 4rem 2rem;
    background-color: #f9f7f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.price-detail {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f9f7f5;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.philosophy-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-content {
    flex: 1.2;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.philosophy-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.method-section {
    padding: 5rem 2rem;
    background-color: #f9f7f5;
}

.method-header {
    text-align: center;
    margin-bottom: 4rem;
}

.method-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.method-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.step-item {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem;
}

.team-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f7f5;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #fff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #6f5a42;
}

.contact-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f7f5;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #fff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.info-block .note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f9f7f5;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.location-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.location-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.location-info ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    font-size: 4rem;
    color: #8b7355;
    margin-bottom: 2rem;
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #6f5a42;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c2c2c;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-large,
    .testimonials-split,
    .form-split,
    .service-detail-split,
    .about-hero-split,
    .philosophy-split,
    .team-split,
    .contact-split,
    .hero-content-split {
        flex-direction: column;
    }

    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

    .method-steps,
    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .ad-label {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}