* {
    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: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #3d7a4d;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: #999;
    font-style: italic;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a3d;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #d4e3d9;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3d7a4d;
    transform: translateY(-2px);
}

.intro-statement {
    padding: 100px 8%;
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.large-text {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 300;
}

.split-content {
    display: flex;
    background-color: #ffffff;
    min-height: 500px;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

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

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

.split-text-right h2,
.split-text-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text-right p,
.split-text-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.link-arrow {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.link-arrow::after {
    content: " →";
    margin-left: 5px;
}

.services-grid {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.grid-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.grid-header p {
    font-size: 20px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d4e3d9;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    padding: 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.btn-select {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 14px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #3d7a4d;
}

.form-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display strong {
    color: #2d5a3d;
    font-size: 18px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d7a4d;
}

.trust-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 20px;
}

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

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.page-hero {
    padding: 100px 5% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    min-height: 500px;
    padding: 60px 5%;
}

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

.detail-content-left,
.detail-content-right {
    flex: 1;
    padding: 40px 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-image-left,
.detail-image-right {
    flex: 1;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

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

.detail-content-left h2,
.detail-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.detail-content-left p,
.detail-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.price-display {
    margin: 30px 0;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
}

.price-note {
    font-size: 14px;
    color: #888;
    margin-left: 8px;
}

.about-story {
    padding: 80px 5%;
    background-color: #ffffff;
}

.story-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.values-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.team-philosophy {
    padding: 100px 5%;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.point {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.point p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.commitment-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.commitment-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-info-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.contact-block {
    flex: 1 1 400px;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.detail-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d5a3d;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d5a3d;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.faq-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.visit-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.visit-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 5%;
    background-color: #ffffff;
    min-height: 600px;
}

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

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

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 50px;
    display: none;
}

.selected-service-info.show {
    display: block;
}

.selected-service-info strong {
    color: #2d5a3d;
    font-size: 18px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.step-box {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 200px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.step-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d7a4d;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.thanks-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff9e6;
    border-radius: 6px;
}

.thanks-note p {
    font-size: 14px;
    color: #666;
    text-align: left;
}

.legal-page {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: #2d5a3d;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-right {
        min-height: 400px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .large-text {
        font-size: 24px;
    }

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

    .grid-header h2 {
        font-size: 32px;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .point {
        flex: 1 1 100%;
    }
}
