/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Navigation - Split Screen Style */
.nav-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;
}

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

.nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-right a.active {
    color: #2c5f2d;
}

.nav-right a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5f2d;
}

/* Hero Section - Split Screen Modern */
.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-content-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4620;
    opacity: 1;
}

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

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
    opacity: 1;
}

/* Intro Statement Section */
.intro-statement {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.statement-wrapper {
    max-width: 880px;
    margin: 0 auto;
}

.statement-wrapper h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.statement-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Split Sections - Alternating */
.split-reverse,
.split-standard {
    display: flex;
    min-height: 70vh;
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left {
    background-color: #f8f9fa;
}

.split-content-right {
    background-color: #ffffff;
}

.split-visual-left,
.split-visual-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-content-left h3,
.split-content-right h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    font-size: 1.05rem;
    color: #333;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

/* Insight Block */
.insight-block {
    padding: 4rem 8%;
    background-color: #2c5f2d;
}

.insight-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.insight-marker {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.insight-container h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.insight-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Trust Indicators */
.trust-indicators {
    padding: 5rem 8%;
    background-color: #ffffff;
}

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

.trust-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

.trust-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Testimonial Inline */
.testimonial-inline {
    padding: 5rem 8%;
    background-color: #1a1a1a;
}

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

.testimonial-wrapper blockquote {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.testimonial-wrapper cite {
    font-size: 1rem;
    font-style: normal;
    color: #a0a0a0;
}

/* Services Selection */
.services-selection {
    padding: 6rem 8%;
    background-color: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

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

.btn-select-service:hover {
    background-color: #1e4620;
}

/* Form Section - Split */
.form-section {
    padding: 6rem 8%;
    background-color: #ffffff;
}

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro-left {
    flex: 1;
}

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

.form-intro-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.form-container-right {
    flex: 1;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

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

/* Final Push Section */
.final-push {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.push-container h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.push-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

/* Footer - Split */
.site-footer {
    padding: 4rem 8% 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.footer-left p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
}

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

.footer-bottom p {
    color: #777;
    font-size: 0.85rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    transition: transform 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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;
    font-size: 0.95rem;
    color: #d0d0d0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1e4620;
}

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

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

/* Page Hero (for inner pages) */
.page-hero-split {
    display: flex;
    min-height: 60vh;
}

/* About Page Sections */
.about-content-split {
    display: flex;
    padding: 5rem 8%;
}

.content-left {
    flex: 1;
    padding-right: 4rem;
}

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

.content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.visual-right {
    flex: 0.9;
}

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

.visual-left {
    flex: 0.9;
}

.visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-block {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

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

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

.approach-item {
    flex: 1;
}

.approach-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.values-split {
    display: flex;
}

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

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

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

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.commitment-block {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.commitment-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.commitment-wrapper .cta-primary {
    margin-top: 2rem;
}

/* Services Page */
.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    padding: 5rem 8%;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.service-info-left,
.service-info-right {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-right {
    padding-left: 4rem;
    padding-right: 0;
}

.service-info-left h2,
.service-info-right h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-info-left p,
.service-info-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    font-size: 1rem;
    color: #333;
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-visual-left,
.service-visual-right {
    flex: 0.9;
}

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

.service-pricing {
    margin-top: 2rem;
}

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

.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #1e4620;
    opacity: 1;
}

.services-cta {
    padding: 5rem 8%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-wrapper p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-details-left {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-block a {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
    margin-top: 2rem;
}

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

.contact-visual-right {
    flex: 1;
}

.location-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

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

.location-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

.approach-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 8%;
    min-height: 60vh;
    background-color: #f8f9fa;
}

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

.thanks-container h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirm {
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

/* Legal Content Pages */
.legal-content {
    padding: 5rem 8%;
    background-color: #ffffff;
}

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

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

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

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5f2d;
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-left h1 {
        font-size: 2.8rem;
    }

    .hero-split,
    .split-reverse,
    .split-standard,
    .form-split,
    .contact-split,
    .about-content-split,
    .service-detail-split {
        flex-direction: column;
    }

    .split-reverse {
        flex-direction: column;
    }

    .hero-visual-right,
    .split-visual-left,
    .split-visual-right {
        min-height: 400px;
    }

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

    .nav-right {
        gap: 1.5rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .service-info-left,
    .service-info-right {
        padding-right: 0;
        padding-left: 0;
    }

    .content-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

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

    .nav-right {
        gap: 1rem;
    }

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

    .hero-content-left p {
        font-size: 1.1rem;
    }

    .statement-wrapper h2 {
        font-size: 2rem;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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