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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #ffffff;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

.split-image-left {
    flex: 1;
    background-color: #ddd9d3;
}

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

.split-content-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.split-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.3rem;
}

.services-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-color: #e0dcd7;
}

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

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

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.select-service {
    align-self: flex-start;
    padding: 0.85rem 2rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

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

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

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

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

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

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

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

.approach-split {
    display: flex;
    min-height: 65vh;
    background-color: #ffffff;
}

.split-content-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f6f3;
}

.split-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.split-content-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.3rem;
}

.split-image-right {
    flex: 1;
    background-color: #ddd9d3;
}

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

.footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

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

.cookie-accept:hover {
    background-color: #6f5a43;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.cookie-reject:hover {
    background-color: #333;
}

@media (max-width: 968px) {
    .hero-split,
    .philosophy-split,
    .approach-split,
    .service-card-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content-right,
    .split-content-left,
    .service-details {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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