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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 75vh;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e8ede9;
}

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

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

.cta-primary:hover {
    background-color: #234a32;
}

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

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

.intro-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.intro-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.services-showcase {
    padding: 6rem 5%;
    background-color: #f5f7f5;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.service-image {
    flex: 1;
    background-color: #e8ede9;
}

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

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

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

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.service-select:hover {
    background-color: #234a32;
}

.trust-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.trust-split {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2d5f3f;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    color: #555;
    line-height: 1.6;
}

.trust-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.form-section {
    padding: 6rem 5%;
    background-color: #f5f7f5;
}

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

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-header p {
    color: #666;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

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

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

.submit-btn:hover {
    background-color: #234a32;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2d5f3f;
}

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    padding: 6rem 5% 4rem;
    background-color: #f5f7f5;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

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

.story-split {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f5f7f5;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-split {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.approach-section {
    padding: 5rem 5%;
    background-color: #f5f7f5;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.approach-content > p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.7;
}

.approach-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-point {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.approach-point h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.approach-point p {
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #555;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

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

.cta-section {
    padding: 5rem 5%;
    background-color: #2d5f3f;
    color: #ffffff;
    text-align: center;
}

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

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

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2d5f3f;
}

.cta-section .cta-primary:hover {
    background-color: #f5f5f5;
}

.contact-main {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.contact-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.info-section {
    padding: 5rem 5%;
    background-color: #f5f7f5;
}

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

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.info-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

.map-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

.thanks-section {
    padding: 6rem 5%;
    background-color: #f5f7f5;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f5f7f5;
    border-radius: 4px;
}

.thanks-note {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.next-steps {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    background-color: #f5f7f5;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.legal-content a:hover {
    color: #234a32;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #234a32;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .story-split,
    .team-split,
    .service-card,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .service-card.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .values-grid,
    .approach-points,
    .info-grid {
        flex-direction: column;
    }

    .value-card,
    .approach-point,
    .info-card {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

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