* {
    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.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

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

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

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

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.cta-primary {
    background-color: #2c2c2c;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 80px 20px;
}

.intro-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text-center h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.intro-text-center p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    background-color: #fff;
}

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

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

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

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

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

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c2c2c;
    padding: 14px 28px;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s;
}

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

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

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.appointment-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #fff;
}

.trust-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-hero {
    background-color: #f5f1ed;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    background-color: #fff;
}

.split-content-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.service-card {
    max-width: 700px;
    margin: 0 auto;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 32px;
    color: #2c2c2c;
}

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

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

.about-content {
    background-color: #fff;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.team-intro {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.member-role {
    color: #8b7355;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.values-flex {
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    padding: 30px;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.value-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-block p {
    color: #555;
    line-height: 1.7;
}

.contact-content {
    background-color: #fff;
}

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-note {
    background-color: #f9f7f4;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

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

.location-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f5f1ed;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.service-note {
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    display: inline-block;
    margin: 20px 0;
    font-weight: 500;
}

.next-steps {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b7355;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-page p,
.legal-page li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
}

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

.legal-updated {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

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

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

.cookie-table th {
    background-color: #f5f1ed;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 20px;
    }

    .main-nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .trust-grid,
    .team-grid,
    .values-flex {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .split-content-full {
        padding: 40px 20px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}