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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a7a3c;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.ad-notice {
    background-color: var(--background-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--background-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--background-white);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

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

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

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.intro-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: normal;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--background-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 70px;
    font-weight: normal;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    min-height: 350px;
    border: 1px solid var(--border-color);
}

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

.service-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-info {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.service-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: bold;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.process-split {
    display: flex;
    background-color: var(--background-white);
}

.process-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--background-light);
}

.process-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 45px;
    font-weight: normal;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: bold;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: normal;
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

.process-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: var(--background-white);
}

.form-intro {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--background-white);
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: normal;
    color: var(--background-white);
}

.form-intro p {
    font-size: 18px;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: var(--background-light);
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 16px 40px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--background-light);
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--background-white);
    font-weight: normal;
}

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

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

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

.footer-col ul li a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--background-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 25px 40px;
    z-index: 10000;
    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: 30px;
}

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

.cookie-content a {
    color: var(--background-white);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--background-white);
    border: 1px solid var(--background-white);
}

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: var(--background-white);
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.hero-text h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: normal;
}

.hero-text p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.story-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.story-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-white);
}

.story-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: normal;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.values-split {
    display: flex;
    min-height: 500px;
    background-color: var(--background-light);
}

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

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

.values-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: normal;
}

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

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: normal;
}

.value-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.expertise-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-white);
}

.expertise-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: normal;
}

.expertise-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.expertise-list {
    list-style: none;
    margin-top: 25px;
}

.expertise-list li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.expertise-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.cta-content-centered h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: normal;
}

.cta-content-centered p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.page-header {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-light);
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.page-header p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-detail {
    display: flex;
    margin-bottom: 80px;
    min-height: 450px;
    border: 1px solid var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.service-detail-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: normal;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.pricing-notes {
    padding: 60px 40px;
    background-color: var(--background-light);
}

.notes-container {
    max-width: 900px;
    margin: 0 auto;
}

.notes-container h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.notes-container p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.services-cta-section {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.contact-hero {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-light);
    border-bottom: 2px solid var(--border-color);
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-hero p {
    font-size: 19px;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--background-white);
}

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

.info-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.address-line {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.email-display {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-note {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 15px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
}

.day {
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-weight: bold;
}

.contact-visual {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
}

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: var(--background-white);
}

.visual-overlay h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: normal;
}

.visual-overlay p {
    font-size: 16px;
    line-height: 1.5;
}

.approach-info {
    padding: 80px 40px;
    background-color: var(--background-light);
}

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

.approach-container h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: normal;
}

.approach-steps-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
}

.step-icon {
    display: block;
    font-size: 38px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.approach-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-note {
    padding: 60px 40px;
    background-color: var(--background-white);
}

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

.note-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.note-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
}

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

.thanks-icon {
    margin-bottom: 35px;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: normal;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: var(--background-white);
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.service-confirmation p {
    font-size: 17px;
    color: var(--text-dark);
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: normal;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background-color: var(--background-white);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.step-item .step-number {
    display: block;
    font-size: 32px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: normal;
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

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

.primary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background-color: var(--secondary-color);
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: normal;
}

.legal-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin: 15px 0 15px 25px;
}

.legal-container ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

.legal-update {
    margin-top: 50px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .form-section-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .expertise-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse,
    .intro-split.reverse,
    .values-split.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

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

    .approach-steps-split {
        flex-direction: column;
    }
}