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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: #2d5f3f;
}

.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e8ebe8;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4rem 3rem;
    max-width: 650px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a3a2a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-section {
    background-color: #f8f9f8;
    padding: 6rem 2rem;
}

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

.section-container.narrow {
    max-width: 800px;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5d5a;
    margin-bottom: 1.2rem;
}

.services-highlight {
    background-color: #ffffff;
    padding: 7rem 2rem 8rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    background-color: #e8ebe8;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #4a5d5a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #3d7f5f;
}

.form-section {
    background-color: #f0f5f2;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9f8;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.values-section {
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 6rem 2rem;
}

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

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d8e8d8;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 7rem 2rem;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.final-cta {
    background-color: #f0f5f2;
    padding: 5rem 2rem;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

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

.footer-section ul li a:hover {
    color: #a8d5ba;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.page-header {
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: #d8e8d8;
}

.services-detail {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.service-full {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-content-left h2,
.service-content-right h2 {
    font-size: 2rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.service-content-left p,
.service-content-right p {
    font-size: 1rem;
    color: #4a5d5a;
    margin-bottom: 1rem;
}

.service-image-right,
.service-image-left {
    flex: 0 0 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e8ebe8;
}

.price-display {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
}

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #3d7f5f;
}

.process-section {
    background-color: #f8f9f8;
    padding: 6rem 2rem;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #1a3a2a;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.95rem;
    color: #4a5d5a;
}

.about-intro {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5d5a;
    margin-bottom: 1.2rem;
}

.team-section {
    background-color: #f8f9f8;
    padding: 6rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1rem;
    color: #4a5d5a;
    line-height: 1.7;
}

.story-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.story-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.1rem;
    color: #4a5d5a;
    margin-bottom: 1.2rem;
}

.values-full {
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 6rem 2rem;
}

.values-full h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-block h3 {
    font-size: 1.8rem;
    color: #a8d5ba;
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d8e8d8;
}

.cta-about {
    background-color: #f0f5f2;
    padding: 5rem 2rem;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-about p {
    font-size: 1.1rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-about .cta-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.contact-main {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 5rem;
}

.contact-info-block {
    flex: 0 0 35%;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #1a3a2a;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1rem;
    color: #4a5d5a;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.note-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-text-block {
    flex: 1;
}

.contact-text-block h2 {
    font-size: 2rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.contact-text-block p {
    font-size: 1rem;
    color: #4a5d5a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.contact-checklist {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.contact-checklist li {
    margin-bottom: 0.6rem;
    color: #4a5d5a;
}

.availability-note {
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
    margin-top: 2rem;
}

.availability-note h3 {
    font-size: 1.3rem;
    color: #1a3a2a;
    margin-bottom: 0.8rem;
}

.availability-note p {
    margin-bottom: 0;
}

.faq-section {
    background-color: #f8f9f8;
    padding: 6rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a3a2a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5d5a;
    line-height: 1.7;
}

.thanks-section {
    background-color: #f8f9f8;
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.thanks-content {
    text-align: left;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
    text-align: center;
}

.order-summary {
    padding: 1.5rem;
    background-color: #f0f5f2;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.order-summary h2 {
    font-size: 1.5rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
}

.order-summary p {
    font-size: 1rem;
    color: #4a5d5a;
    margin-bottom: 0.5rem;
}

.thanks-content h2 {
    font-size: 1.8rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-box {
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
}

.step-box h3 {
    font-size: 1.2rem;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.step-box p {
    font-size: 0.95rem;
    color: #4a5d5a;
    margin-bottom: 0;
}

.thanks-note {
    font-size: 1rem;
    color: #4a5d5a;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9f8;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 4rem 2rem 6rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a3a2a;
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a3a2a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5d5a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.6rem;
    color: #4a5d5a;
    line-height: 1.6;
}

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

.legal-container a:hover {
    color: #3d7f5f;
}

.retention-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.retention-table th,
.retention-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.retention-table th,
.cookies-table th {
    background-color: #f8f9f8;
    color: #1a3a2a;
    font-weight: 600;
}

.retention-table td,
.cookies-table td {
    color: #4a5d5a;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .service-card {
        flex-direction: column;
    }

    .service-image {
        min-height: 250px;
    }

    .service-full {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .service-image-right,
    .service-image-left {
        width: 100%;
        height: 300px;
    }

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

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

    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

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

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