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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 6%;
    background-color: #f8f9f7;
}

.hero-text-content {
    max-width: 580px;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.dual-content {
    display: flex;
    min-height: 600px;
}

.dual-left {
    flex: 1;
    background-color: #eee;
}

.dual-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.dual-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #fafafa;
}

.dual-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.dual-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-extended {
    padding: 4rem 4%;
    background-color: #ffffff;
}

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

.services-grid-alternate {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item-large {
    display: flex;
    min-height: 450px;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f5f5;
}

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

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

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-img-right,
.service-img-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.form-section {
    padding: 5rem 4%;
    background-color: #f8f9f7;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

.trust-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    padding: 1rem;
    background-color: #222;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem 4%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    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-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.3rem;
}

.about-intro-split {
    display: flex;
    min-height: 500px;
}

.about-text {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #eee;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 4%;
    background-color: #f8f9f7;
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.approach-section {
    padding: 0;
}

.approach-content-split {
    display: flex;
    min-height: 600px;
}

.approach-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.approach-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.approach-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #2c5f2d;
}

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

.commitment-section {
    padding: 5rem 4%;
    background-color: #f5f5f5;
}

.commitment-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.commitment-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.services-detail {
    padding: 3rem 4%;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    min-height: 500px;
    margin-bottom: 3rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

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

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

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

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

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

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

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

.cta-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.contact-split-section {
    display: flex;
    min-height: 500px;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9f7;
}

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

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

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

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

.contact-map-side {
    flex: 1;
    background-color: #ddd;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 600;
}

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

.contact-additional h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-additional > p {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-reasons {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

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

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

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

.legal-page p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

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

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

.thanks-next-steps {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.thanks-next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

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

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

.btn-primary:hover {
    background-color: #234d24;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #555;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #444;
}

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

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

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

    .hero-split,
    .dual-content,
    .service-item-large,
    .about-intro-split,
    .approach-content-split,
    .service-detail-item,
    .contact-split-section {
        flex-direction: column;
    }

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

    .trust-grid,
    .values-grid,
    .contact-reasons,
    .footer-content {
        flex-direction: column;
    }

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

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