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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #52b788;
    --accent-color: #95d5b2;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

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

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-text {
    max-width: 560px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25);
}

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

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

.philosophy-section,
.testimonial-section,
.about-intro,
.story-section,
.approach-section,
.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.content-left img,
.content-right img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.link-inline {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.link-inline:hover {
    text-decoration: underline;
}

.services-intro {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
    padding: 2rem 0;
}

blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: Georgia, serif;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.process-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.inquiry-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.inquiry-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25);
}

.final-cta {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.cta-box {
    background: var(--primary-color);
    color: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.main-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--bg-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--bg-light);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.45);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-medium);
}

.approach-content {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.services-detail {
    max-width: 1400px;
    margin: 3rem auto;
}

.service-block {
    margin-bottom: 5rem;
}

.feature-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.feature-list li {
    list-style: disc;
    color: var(--text-medium);
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.additional-info {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

.info-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    color: var(--text-medium);
}

.location-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.location-section h2 {
    margin-bottom: 1rem;
}

.location-section p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-medium);
    margin: 0;
}

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-container {
    background: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 12px;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.step {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

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

.thanks-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-info p {
    margin-bottom: 0.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-container {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-container h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.content-container h2:first-of-type {
    margin-top: 1rem;
    border-top: none;
    padding-top: 0;
}

.content-container h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-container ul li {
    list-style: disc;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .step-item {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-left {
        padding: 2rem 1.5rem;
    }

    .philosophy-section,
    .testimonial-section,
    .about-intro,
    .story-section,
    .approach-section,
    .team-section {
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .services-intro,
    .additional-info,
    .testimonial-section {
        padding: 3rem 1rem;
    }

    .inquiry-section {
        padding: 3rem 1rem;
    }

    .inquiry-form {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .step-item,
    .info-item {
        flex: 1 1 100%;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    blockquote {
        font-size: 1.1rem;
    }

    .content-container {
        padding: 2rem 1.5rem;
    }

    .thanks-container {
        padding: 3rem 2rem;
    }

    .price-value {
        font-size: 1.6rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-left {
        padding: 2rem 1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }

    .content-container {
        padding: 1.5rem 1rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

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

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
        text-align: center;
    }
}
