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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: 1px solid #d0d0d0;
    background-color: #f8f8f8;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

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

.cookie-btn.primary {
    background-color: #2c5530;
    color: #ffffff;
    border-color: #2c5530;
}

.cookie-btn.primary:hover {
    background-color: #234423;
}

.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c5530;
    letter-spacing: -0.5px;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #2c5530;
}

.ad-label {
    background-color: #fff7ed;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f9fafb;
}

.split-content {
    max-width: 520px;
}

.split-content h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c5530;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.hero-cta:hover {
    background-color: #234423;
}

.split-right.hero-image {
    background-color: #e5e5e5;
    overflow: hidden;
}

.split-right.hero-image img {
    width: 100%;
    height: 100%;
}

.split-section {
    display: flex;
}

.split-half {
    flex: 1;
}

.image-half {
    background-color: #e5e5e5;
    overflow: hidden;
}

.image-half img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.text-half {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.text-inner {
    max-width: 540px;
}

.text-inner h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-inner p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.text-inner a {
    color: #2c5530;
    text-decoration: none;
}

.text-inner a:hover {
    text-decoration: underline;
}

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

.testimonial-split {
    padding: 100px 60px;
    background-color: #2c5530;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-box {
    max-width: 800px;
    text-align: center;
}

.testimonial-box blockquote {
    font-size: 28px;
    line-height: 1.5;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-box cite {
    font-size: 16px;
    color: #d4e9d6;
    font-style: normal;
}

.services-intro-split {
    padding: 80px 60px;
    background-color: #f9fafb;
}

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

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

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.service-block {
    display: flex;
    min-height: 500px;
}

.service-block.left-align .service-text {
    order: 1;
    background-color: #ffffff;
}

.service-block.left-align .service-image {
    order: 2;
}

.service-block.right-align .service-image {
    order: 1;
}

.service-block.right-align .service-text {
    order: 2;
    background-color: #f9fafb;
}

.service-text,
.service-image {
    flex: 1;
}

.service-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

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

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

.service-details {
    font-size: 15px;
    color: #888;
    margin-top: 8px;
    margin-bottom: 24px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 24px;
}

.service-select {
    padding: 14px 32px;
    background-color: #2c5530;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: fit-content;
}

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

.service-image {
    background-color: #e5e5e5;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-block.centered {
    flex-direction: column;
    background-color: #1a1a1a;
}

.service-text-full {
    padding: 80px 60px;
    text-align: center;
}

.service-text-full h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-text-full p {
    font-size: 18px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-text-full .service-details {
    color: #999;
}

.service-text-full .service-price.featured {
    font-size: 48px;
    color: #7fc98c;
}

.service-text-full .service-select.featured {
    background-color: #7fc98c;
    color: #1a1a1a;
}

.service-text-full .service-select.featured:hover {
    background-color: #6bb57a;
}

.service-image-full {
    background-color: #e5e5e5;
    height: 400px;
    overflow: hidden;
}

.service-image-full img {
    width: 100%;
    height: 100%;
}

.insights-section {
    padding: 100px 60px;
    background-color: #f9fafb;
}

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

.insights-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.research-note {
    padding: 60px;
    background-color: #fff7ed;
}

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

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

.note-content a {
    color: #2c5530;
    text-decoration: none;
}

.note-content a:hover {
    text-decoration: underline;
}

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

.form-side {
    flex: 1;
    background-color: #2c5530;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-side h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-side p {
    font-size: 18px;
    line-height: 1.6;
    color: #d4e9d6;
}

.form-area {
    flex: 1;
    padding: 80px 60px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
}

.inquiry-form {
    width: 100%;
    max-width: 500px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c5530;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.references-section {
    padding: 60px;
    background-color: #f9fafb;
}

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

.references-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.references-list a {
    color: #2c5530;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #fff7ed;
}

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

.disclaimer-wrapper p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5530;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-container .service-ref {
    font-weight: 600;
    color: #2c5530;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2c5530;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.thanks-container a:hover {
    background-color: #234423;
}

.page-header {
    padding: 100px 60px 60px;
    background-color: #f9fafb;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.contact-info-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c5530;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 1024px) {
    .split-hero,
    .split-section,
    .form-split,
    .service-block {
        flex-direction: column !important;
    }

    .split-hero {
        height: auto;
    }

    .split-left,
    .text-half,
    .service-text,
    .form-side,
    .form-area {
        padding: 50px 30px;
    }

    .footer-grid,
    .testimonial-grid,
    .contact-info-grid {
        flex-direction: column;
    }
}

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

    .menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .split-content h1 {
        font-size: 36px;
    }

    .text-inner h2,
    .service-text h3 {
        font-size: 28px;
    }

    .testimonial-box blockquote {
        font-size: 22px;
    }

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