* {
    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: #2a2a2a;
    background: #ffffff;
}

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

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

a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    background: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f2d;
    opacity: 1;
}

.hero-stacked {
    background: #f9f7f4;
    padding: 80px 30px;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1f4620;
    transform: translateY(-2px);
    opacity: 1;
}

.intro-block {
    padding: 100px 30px;
    background: #ffffff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.intro-image-offset {
    flex: 0 0 450px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-stacked {
    padding: 100px 30px;
    background: #fafafa;
}

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

.section-header-center h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.service-card-large {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.service-visual {
    flex: 0 0 480px;
    background-color: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
}

.btn-select-service {
    align-self: flex-start;
    background: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background: #1f4620;
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 80px 30px;
    background: #2c5f2d;
    color: #ffffff;
}

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

.testimonial-wrapper blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-wrapper cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.story-block-alt {
    padding: 100px 30px;
    background: #f4efe8;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    margin-top: 20px;
    color: #2c5f2d;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    opacity: 1;
}

.form-block-stacked {
    padding: 100px 30px;
    background: #ffffff;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    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: #2c5f2d;
}

.btn-submit {
    background: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #1f4620;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 30px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8b8;
    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: #b8b8b8;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

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

.cookie-content a {
    color: #8fc48f;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background: #666;
    color: #ffffff;
}

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

.page-hero {
    background: #2c5f2d;
    padding: 100px 30px 80px;
    color: #ffffff;
}

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

.page-hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-timeline {
    padding: 100px 30px;
    background: #ffffff;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 32px;
    font-weight: 800;
    color: #2c5f2d;
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.values-grid {
    padding: 100px 30px;
    background: #f9f7f4;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.team-section {
    padding: 100px 30px;
    background: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cta-final-about {
    padding: 100px 30px;
    background: #2c5f2d;
    color: #ffffff;
}

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

.cta-content-center h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-content-center .cta-primary {
    background: #ffffff;
    color: #2c5f2d;
}

.cta-content-center .cta-primary:hover {
    background: #f0f0f0;
}

.services-hero {
    background: #f4efe8;
}

.services-detailed {
    padding: 100px 30px;
    background: #ffffff;
}

.service-full-block {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.service-full-block.reverse {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 480px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-full-text {
    flex: 1;
}

.service-full-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-full-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.service-pricing-detail {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
    color: #2c5f2d;
}

.form-block-services {
    padding: 100px 30px;
    background: #fafafa;
}

.contact-hero {
    background: #f4efe8;
}

.contact-info-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.contact-main {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: #2c5f2d;
    line-height: 1.8;
}

.hours-list {
    margin: 20px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hours-row .day {
    font-weight: 600;
    color: #2a2a2a;
}

.hours-row .time {
    color: #555;
}

.hours-note {
    font-size: 15px;
    color: #777;
    margin-top: 15px;
}

.contact-image-side {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.map-placeholder {
    padding: 80px 30px;
    background: #f0f0f0;
    text-align: center;
}

.map-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 30px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 18px;
    color: #2a2a2a;
}

.thanks-section {
    padding: 100px 30px;
    background: #f9f7f4;
}

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 25px;
    background: #e8f5e8;
    border-radius: 8px;
    margin: 30px 0;
}

.service-selected {
    font-size: 17px;
    color: #2c5f2d;
}

.thanks-note {
    font-size: 16px;
    color: #666;
    margin: 30px 0;
}

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

.btn-primary {
    background: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1f4620;
    opacity: 1;
}

.btn-secondary {
    background: #ffffff;
    color: #2c5f2d;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
    opacity: 1;
}

.thanks-image {
    max-width: 800px;
    margin: 60px auto 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.legal-page {
    padding: 80px 30px 100px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8e8e8;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #2a2a2a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-container ul {
    margin: 20px 0 20px 25px;
    list-style: disc;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background: #f5f5f5;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 15px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .section-wrapper,
    .service-card-large,
    .service-full-block,
    .contact-grid {
        flex-direction: column;
    }

    .service-card-large.reverse,
    .service-full-block.reverse {
        flex-direction: column;
    }

    .intro-image-offset,
    .service-visual,
    .service-full-image,
    .contact-image-side {
        flex: 1;
        width: 100%;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

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

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