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

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

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header Split Navigation */
.header-split {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
}

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

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

.nav-right a {
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-right a:hover {
    color: #2d7a3f;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d7a3f;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

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

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

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

.hero-content {
    max-width: 600px;
}

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

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.5rem;
}

.hero-right {
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background-color: #236331;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 63, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #2d7a3f;
    border: 2px solid #2d7a3f;
}

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

.cta-large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    background-color: #2d7a3f;
    color: #ffffff;
}

.cta-large:hover {
    background-color: #236331;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 63, 0.35);
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Services Preview */
.services-preview {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

.section-header p {
    font-size: 1.15rem;
    color: #666666;
}

.services-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0 1.5rem 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d7a3f;
    margin: 0 1.5rem 1.2rem;
}

.link-arrow {
    display: inline-block;
    color: #2d7a3f;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Split Image Text Section */
.split-image-text {
    display: flex;
    min-height: 600px;
}

.split-visual,
.split-content {
    flex: 1;
}

.split-visual {
    background-size: cover;
    background-position: center;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f4f7f5;
}

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

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

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

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a3f;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Process Flow Section */
.process-flow {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.process-flow h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: #2d7a3f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Testimonials Split */
.testimonials-split {
    display: flex;
}

.testimonial-content,
.testimonial-visual {
    flex: 1;
}

.testimonial-content {
    padding: 4rem 5%;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #666666;
    font-weight: 600;
}

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

/* CTA Banner */
.cta-banner {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2d7a3f 0%, #1e5a2d 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-content .cta-large {
    background-color: #ffffff;
    color: #2d7a3f;
}

.cta-content .cta-large:hover {
    background-color: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.6rem;
}

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

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

.form-privacy {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-privacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy a {
    color: #2d7a3f;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #2d7a3f;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #236331;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 63, 0.3);
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 50vh;
}

.page-hero-content,
.page-hero-image {
    flex: 1;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f4f7f5;
}

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

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

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

/* About Story Section */
.about-story {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

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

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

.story-image {
    flex: 0.7;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: #fafafa;
    text-align: center;
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3f;
    margin-bottom: 1rem;
}

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

/* Team Split */
.team-split {
    padding: 5rem 5%;
}

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

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

.team-intro p {
    font-size: 1.15rem;
    color: #666666;
}

.team-members {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-size: 1rem;
    color: #2d7a3f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

/* Approach Section */
.approach-section {
    display: flex;
    background-color: #f8f8f8;
}

.approach-visual,
.approach-content {
    flex: 1;
}

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

.approach-content {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2d7a3f 0%, #1e5a2d 100%);
    text-align: center;
}

.stats-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    min-height: 600px;
    margin-bottom: 3rem;
}

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

.service-visual,
.service-info {
    flex: 1;
}

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

.service-info {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

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

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

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

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

.service-includes li {
    font-size: 1.05rem;
    color: #333333;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d7a3f;
    font-size: 1.8rem;
    line-height: 1;
}

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

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d7a3f;
}

.price-note {
    display: block;
    font-size: 1rem;
    color: #666666;
    margin-top: 0.3rem;
}

/* Service Comparison Table */
.service-comparison {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
}

.comparison-row:first-child {
    background-color: #f4f7f5;
    font-weight: 700;
    padding: 1.5rem 0;
}

.comparison-header,
.comparison-cell {
    flex: 1;
    padding: 0 1rem;
    font-size: 1rem;
}

.comparison-cell {
    color: #555555;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5%;
    background-color: #fafafa;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

/* Contact Split */
.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-details {
    margin-bottom: 3rem;
}

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

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

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

.contact-item a {
    color: #2d7a3f;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #888888;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-how,
.contact-visit {
    margin-bottom: 2.5rem;
}

.contact-how h3,
.contact-visit h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-how p,
.contact-visit p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 1rem;
}

.contact-how ul {
    list-style: none;
}

.contact-how ul li {
    font-size: 1rem;
    color: #555555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-how ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d7a3f;
}

.contact-map {
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.map-overlay p {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.contact-cta {
    padding: 4rem 5%;
    background-color: #f4f7f5;
}

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

.cta-box h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2rem;
}

.faq-contact {
    padding: 4rem 5%;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #555555;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2d7a3f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

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

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

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

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

.thanks-info p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    font-size: 1rem;
    color: #555555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.thanks-contact {
    font-size: 1.05rem;
    color: #666666;
}

.thanks-contact a {
    color: #2d7a3f;
    text-decoration: underline;
}

.testimonials-simple {
    padding: 4rem 5%;
    background-color: #fafafa;
}

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

.testimonial-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-size: 1rem;
    color: #888888;
    font-style: normal;
    font-weight: 600;
}

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

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #888888;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d7a3f;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0.5rem;
}

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

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f4f7f5;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #555555;
}

.legal-actions {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d7a3f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #236331;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-right a {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .hero-right {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }

    .split-image-text {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

    .testimonial-visual {
        min-height: 300px;
    }

    .about-story {
        flex-direction: column;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .approach-section {
        flex-direction: column-reverse;
    }

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

    .comparison-row {
        flex-direction: column;
    }

    .comparison-header,
    .comparison-cell {
        padding: 0.8rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .page-hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .page-hero-image {
        min-height: 300px;
    }

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

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

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

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .header-split {
        padding: 1rem 4%;
    }

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

    .section-header h2,
    .process-flow h2,
    .values-section h2 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}
