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

:root {
    --primary-color: #2d5016;
    --secondary-color: #8b6f47;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.main-nav {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

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

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

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-btn:hover {
    background-color: #1f3a0f;
}

.intro-statement {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-wrapper h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.statement-wrapper p {
    font-size: 19px;
    opacity: 0.95;
    line-height: 1.8;
}

.split-about {
    display: flex;
    min-height: 650px;
}

.split-image-left {
    flex: 0 0 45%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.split-text-right {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-right h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
}

.services-preview {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 16px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 24px 20px;
}

.select-service-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-section {
    padding: 100px 40px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: var(--bg-light);
}

.contact-form-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 0 0 35%;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.form-container {
    flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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;
    color: var(--text-dark);
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

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

.page-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 40px;
    background-color: rgba(45, 80, 22, 0.7);
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.hero-overlay p {
    font-size: 20px;
}

.about-story {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.values-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    text-align: left;
}

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

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

.team-approach {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.approach-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.approach-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

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

.collab-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.collab-container h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.collab-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.intro-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-container p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.service-detail.reverse {
    background-color: var(--bg-light);
}

.detail-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-details {
    margin-top: 28px;
}

.service-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-details ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-details ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.detail-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.services-cta {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 19px;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-main p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.contact-item p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.contact-side {
    flex: 0 0 35%;
}

.info-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 0;
}

.map-container {
    height: 400px;
    background-color: #e5e3df;
    position: relative;
    background-image: linear-gradient(45deg, #e5e3df 25%, #d9d7d3 25%, #d9d7d3 50%, #e5e3df 50%, #e5e3df 75%, #d9d7d3 75%, #d9d7d3);
    background-size: 40px 40px;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-white);
    padding: 24px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

.thanks-section {
    padding: 120px 40px;
    background-color: var(--bg-white);
    text-align: center;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 19px;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.next-steps {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.steps-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 30px 40px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-content {
        padding: 60px 40px;
    }

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

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

    .split-image-left {
        flex: 0 0 auto;
        height: 400px;
    }

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        height: 350px;
    }

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

    .approach-image {
        height: 400px;
    }

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

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

    .detail-image {
        height: 350px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .services-preview {
        padding: 80px 20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

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

    .step-item {
        flex: 1 1 100%;
    }
}