* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

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

.header-asymmetric {
    position: relative;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    text-align: center;
    font-size: 0.75rem;
    color: #666666;
    padding: 0.5rem;
    background-color: #f5f5f5;
    margin: -1rem -2rem 1rem -2rem;
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2c5f2d;
}

.hero-offset {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f8f8;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: #e5e5e5;
}

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

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 3rem;
    margin-left: 5%;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,45,0.3);
}

.intro-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.intro-text-offset h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-offset p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.intro-image-floating {
    flex: 1;
    margin-top: -3rem;
}

.intro-image-floating img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}

.services-irregular {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
    padding-left: 5%;
}

.services-header-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card.offset-top {
    margin-top: -2rem;
}

.service-card.offset-bottom {
    margin-top: 2rem;
}

.service-card.offset-center {
    margin-top: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1e4620;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 2rem;
}

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

.form-intro p {
    color: #4a4a4a;
}

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

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

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

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.booking-form input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.technical-offset {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.technical-image {
    flex: 1;
}

.technical-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.technical-content {
    flex: 1;
    padding-left: 2rem;
}

.technical-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.technical-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.benefits-stacked {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.benefits-stacked h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefit-item.left-aligned {
    margin-right: 20%;
}

.benefit-item.right-aligned {
    margin-left: 20%;
}

.benefit-item.center-aligned {
    margin: 0 10%;
}

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

.benefit-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

.benefit-item a {
    color: #2c5f2d;
    text-decoration: none;
}

.benefit-item a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-block p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-references p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-references a {
    color: #4a9d4f;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 0.85rem;
}

.about-hero-offset {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content-block {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.about-content-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.about-image-wrapper {
    flex: 1;
    margin-top: -3rem;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}

.story-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.story-text-left {
    flex: 1;
}

.story-text-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text-left p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.story-image-right {
    flex: 1;
}

.story-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    object-fit: cover;
}

.values-irregular {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

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

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card.offset-1 {
    margin-left: 0;
    margin-right: 15%;
}

.value-card.offset-2 {
    margin-left: 15%;
    margin-right: 0;
}

.value-card.offset-3 {
    margin-left: 5%;
    margin-right: 10%;
}

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

.value-card p {
    font-size: 1rem;
    color: #4a4a4a;
}

.approach-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.approach-content {
    flex: 1;
}

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

.approach-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    object-fit: cover;
}

.cta-asymmetric {
    padding: 5rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.services-hero {
    padding: 5rem 2rem 3rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-detail-asymmetric {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.service-detail.offset-layout-1 {
    margin-left: 0;
    margin-right: 5%;
}

.service-detail.offset-layout-2 {
    margin-left: 5%;
    margin-right: 0;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

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

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.service-duration {
    font-style: italic;
    color: #666666;
    margin-bottom: 1.5rem;
}

.contact-hero-offset {
    padding: 5rem 2rem 3rem 5%;
    background-color: #f8f8f8;
}

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

.contact-hero-offset p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.contact-layout-asymmetric {
    padding: 3rem 2rem;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
    margin-left: 5%;
}

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f0f0;
    border-left: 4px solid #2c5f2d;
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    object-fit: cover;
}

.directions-section {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
}

.directions-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.direction-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.direction-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.direction-block p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.thanks-section-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-display p {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps ul li {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.last-updated {
    font-style: italic;
    color: #666666;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-text-block {
        margin: -2rem 1rem 0 1rem;
    }

    .intro-container,
    .story-container,
    .approach-wrapper,
    .technical-wrapper,
    .contact-layout-asymmetric,
    .about-hero-offset {
        flex-direction: column;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .benefit-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .value-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .cta-content-offset {
        margin: 0 auto;
        text-align: center;
    }
}