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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfdfb;
}

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

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

.main-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;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-label {
    background-color: #f0ebe5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #6b5d4f;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f9f7f4;
}

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

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #8B7355;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    text-align: center;
    color: #5a5a5a;
}

.services-split {
    background-color: #fafafa;
}

.split-container {
    display: flex;
    min-height: 500px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #5a5a5a;
}

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

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

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B7355;
    margin: 20px 0;
}

.select-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #f5f3f0;
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: #5a5a5a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.disclaimer-notice {
    background-color: #f0ebe5;
    padding: 30px 20px;
    border-top: 3px solid #8B7355;
}

.disclaimer-notice p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #8B7355;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background-color: #f9f7f4;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.about-split {
    background-color: #ffffff;
}

.team-section {
    padding: 80px 20px;
    background-color: #f9f7f4;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
}

.member-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.philosophy-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.services-detailed {
    padding: 60px 20px;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-card-image {
    width: 45%;
    position: relative;
}

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

.service-card-content {
    width: 55%;
    padding: 50px;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.service-card-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-card-content li {
    margin-bottom: 10px;
    color: #5a5a5a;
}

.cta-section {
    padding: 80px 20px;
    background-color: #8B7355;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #f0ebe5;
    margin-bottom: 30px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #8B7355;
}

.cta-section .cta-primary:hover {
    background-color: #f5f3f0;
}

.contact-split {
    padding: 60px 0;
}

.contact-info {
    margin-top: 30px;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.info-note {
    background-color: #f0ebe5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-note p {
    margin: 0;
    color: #5a5a5a;
}

.info-note a {
    color: #8B7355;
    font-weight: 600;
}

.map-section {
    padding: 60px 20px;
    background-color: #f9f7f4;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-section p {
    font-size: 1.05rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f7f4;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5a5a5a;
}

.confirmation-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.confirmation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.confirmation-box p {
    color: #2c3e50;
    font-weight: 600;
}

.email-text {
    font-weight: 600;
    color: #2c3e50;
}

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

.btn-primary {
    background-color: #8B7355;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 15px;
    color: #5a5a5a;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #5a5a5a;
}

.updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 30px;
    }

    .split-image {
        min-height: 300px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .ad-label {
        display: none;
    }

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

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

    .service-card-image,
    .service-card-content {
        width: 100%;
    }

    .service-card-image {
        min-height: 250px;
    }

    .service-card-content {
        padding: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}