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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
}

.ad-notice {
    background: #f8f6f3;
    color: #6b6b6b;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e5e0da;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #faf8f5;
}

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

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555555;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.services-overview {
    padding: 100px 50px;
    background: #f9f7f4;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.section-header p {
    font-size: 18px;
    color: #5a5a5a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555555;
    line-height: 1.7;
}

.price {
    font-size: 26px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 25px;
}

.select-service {
    padding: 14px 32px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 90px 70px;
    background: #faf8f5;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555555;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #d5d0ca;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px 36px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.service-selection-notice {
    display: none;
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    color: #856404;
    margin-top: 20px;
    font-size: 14px;
}

.why-us-split {
    display: flex;
    align-items: stretch;
}

.why-text {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.why-text h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.why-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.testimonials {
    padding: 100px 50px;
    background: #f9f7f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 600;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #8b7355;
    font-weight: 500;
}

.main-footer {
    background: #2c2c2c;
    color: #c5c5c5;
    padding: 70px 50px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #c5c5c5;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #3a3a3a;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #b5b5b5;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #5a5a5a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

.page-hero {
    padding: 100px 50px 80px;
    background: #f9f7f4;
    text-align: center;
}

.page-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: #5a5a5a;
}

.about-split {
    display: flex;
    align-items: stretch;
}

.about-text {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

.values-split {
    display: flex;
    align-items: stretch;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
    padding: 90px 70px;
    background: #faf8f5;
}

.values-text h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.team-section {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 22px;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.philosophy-split {
    display: flex;
    align-items: stretch;
}

.philosophy-text {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.philosophy-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #4a4a4a;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-about {
    padding: 100px 50px;
    background: #f9f7f4;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
}

.service-detail-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.price-box {
    margin: 30px 0;
    padding: 20px;
    background: #f9f7f4;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.price-label {
    font-size: 14px;
    color: #6a6a6a;
    margin-right: 10px;
}

.price-value {
    font-size: 26px;
    color: #8b7355;
    font-weight: 600;
}

.select-service-btn {
    padding: 14px 32px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
    margin-top: 10px;
}

.select-service-btn:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.services-cta {
    padding: 80px 50px;
    background: #faf8f5;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 90px 70px;
    background: #ffffff;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b7355;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background: #f9f7f4;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-section {
    padding: 80px 50px;
    background: #f9f7f4;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.visit-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.visit-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-form-full {
    padding: 80px 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-full h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-form-full p {
    font-size: 17px;
    color: #555555;
}

.contact-form-full a {
    color: #8b7355;
    text-decoration: underline;
}

.thanks-container {
    padding: 100px 50px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555555;
}

.thanks-service {
    padding: 20px;
    background: #f9f7f4;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 17px;
    color: #3a3a3a;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

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

.secondary-button {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #8b7355;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    cursor: pointer;
}

.secondary-button:hover {
    background: #8b7355;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 50px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #e0dbd5;
}

.cookie-table th {
    background: #f9f7f4;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-section-split,
    .why-us-split,
    .about-split,
    .values-split,
    .philosophy-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .nav-container {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content,
    .intro-text,
    .form-container,
    .why-text,
    .about-text,
    .values-text,
    .philosophy-text,
    .contact-info,
    .service-detail-content {
        padding: 60px 40px;
    }

    .services-overview,
    .testimonials,
    .team-section {
        padding: 70px 30px;
    }

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

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .section-header h2,
    .testimonials h2 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .service-info h3 {
        font-size: 24px;
    }

    .price {
        font-size: 22px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}