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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b9d83;
    --accent-color: #c7a57b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

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

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

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    min-width: 50%;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

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

.hero-right {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

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

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

.split-left,
.split-right {
    flex: 1;
    min-width: 50%;
}

.split-left {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.content-block {
    max-width: 600px;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.services-showcase {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    width: calc(33.333% - 27px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
}

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

.form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    color: var(--text-dark);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--secondary-color);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: var(--secondary-color);
}

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.team-member {
    width: calc(50% - 20px);
    min-width: 300px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.member-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.values-right img {
    width: 100%;
    border-radius: 4px;
}

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

.cta-content h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .cta-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-image {
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--secondary-color);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.process-step {
    width: calc(33.333% - 27px);
    min-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-info-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-image {
    flex: 1;
    max-width: 500px;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--secondary-color);
}

.contact-image img {
    width: 100%;
    height: 100%;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hours-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.location-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.location-content {
    max-width: 900px;
}

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

.service-areas {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.area-column {
    flex: 1;
}

.area-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.area-column ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.area-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.faq-item {
    width: calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 4px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.step {
    flex: 1;
    text-align: left;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.service-confirmation {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 24px;
}

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

.additional-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.additional-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.additional-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-page {
    padding: 80px 0;
}

.last-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-content {
    max-width: 900px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .split-layout,
    .contact-split,
    .split-content {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-left,
    .split-right {
        min-width: 100%;
    }

    .service-card {
        width: calc(50% - 20px);
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .content-block h2,
    .section-intro h2 {
        font-size: 28px;
    }

    .service-card,
    .team-member,
    .process-step,
    .faq-item {
        width: 100%;
        min-width: 100%;
    }

    .service-areas {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
