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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef3;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5a6c7d;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d6a4f;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d6a4f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    padding: 5rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    width: 100%;
    height: 500px;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d6a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.cta-primary:hover {
    background-color: #1f4d38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

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

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

/* Intro Split Section */
.intro-split {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    height: 450px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: #2d6a4f;
    font-weight: 600;
    position: relative;
    padding-right: 1.5rem;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s ease;
}

.link-arrow:hover::after {
    right: -5px;
}

/* Benefits Asymmetric Section */
.benefits-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
}

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

.benefit-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-card.benefit-large {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
    color: #ffffff;
}

.benefit-card.benefit-large h3 {
    color: #ffffff;
}

.benefit-card.benefit-large p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-card.benefit-accent {
    background-color: #f0f7f4;
    border: 2px solid #2d6a4f;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 3rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    height: 350px;
}

.service-info {
    flex: 1;
}

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

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

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

.select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.select-service:hover {
    background-color: #1f4d38;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-split {
    padding: 6rem 2rem;
    background-color: #f8faf9;
}

.trust-split blockquote {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2d6a4f;
    border-radius: 8px;
    font-style: italic;
}

.trust-split blockquote p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trust-split cite {
    font-style: normal;
    font-weight: 600;
    color: #2d6a4f;
}

/* Process Modern Section */
.process-modern {
    padding: 6rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.process-modern h2 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    max-width: 300px;
    background-color: #f8faf9;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d6a4f;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* CTA Section Split */
.cta-section-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
    text-align: center;
}

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

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

.cta-content-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Seasonal Tips */
.seasonal-tips {
    padding: 6rem 2rem;
    background-color: #f8faf9;
}

.tips-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-header h2 {
    font-size: 2.8rem;
    color: #1a3a2e;
    font-weight: 700;
}

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

.tip-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tip-card h4 {
    font-size: 1.5rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background-color: #f8faf9;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #e8eef3;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2d6a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.btn-submit:hover {
    background-color: #1f4d38;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #1f4d38;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.5);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #95d5b2;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.page-hero .hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Story Section */
.story-split {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background-color: #f8faf9;
}

.values-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.values-intro h2 {
    font-size: 2.8rem;
    color: #1a3a2e;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Showcase */
.team-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 4rem;
    font-weight: 700;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 0 0 250px;
}

.member-image img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-info .role {
    font-size: 1.1rem;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background-color: #f8faf9;
}

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

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

.approach-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Experience Numbers */
.experience-numbers {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
}

.numbers-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.number-box {
    flex: 1 1 250px;
    text-align: center;
    color: #ffffff;
}

.number-box .number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.number-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Philosophy Section */
.philosophy-split {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background-color: #f8faf9;
    text-align: center;
}

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

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

.cta-box p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    margin-bottom: 5rem;
}

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

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-detail-text {
    flex: 1;
}

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

.service-detail-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.price-label {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    color: #2d6a4f;
    font-weight: 800;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: #7a8c9e;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    height: 400px;
}

/* Additional Info */
.additional-info {
    padding: 4rem 2rem;
    background-color: #f8faf9;
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
}

.info-box h2 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services CTA */
.services-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
    text-align: center;
}

.services-cta .cta-box h2 {
    color: #ffffff;
}

.services-cta .cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Split */
.contact-split {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: #f0f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.7;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact FAQ */
.contact-faq {
    padding: 6rem 2rem;
    background-color: #f8faf9;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-size: 2.8rem;
    color: #1a3a2e;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

/* CTA Contact */
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #1f4d38 100%);
    text-align: center;
}

.cta-contact .cta-box h2 {
    color: #ffffff;
}

.cta-contact .cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Thanks Page */
.thanks-page {
    padding: 6rem 2rem;
    background-color: #f8faf9;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-main {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    margin: 2rem 0;
}

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

.selected-service-box h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-name {
    font-size: 1.5rem;
    color: #1a3a2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    color: #2d6a4f;
    font-weight: 700;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-next-steps ol {
    list-style-position: inside;
    counter-reset: item;
}

.thanks-next-steps ol li {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 2;
    counter-increment: item;
    padding-left: 1rem;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.legal-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #f0f7f4;
    border-left: 4px solid #2d6a4f;
    border-radius: 8px;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.legal-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-container strong {
    color: #2c3e50;
    font-weight: 700;
}

.legal-container a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1f4d38;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e8eef3;
    font-size: 0.95rem;
    color: #7a8c9e;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .split-container,
    .service-item,
    .team-member,
    .form-container-split,
    .contact-container {
        flex-direction: column;
    }

    .service-item.reverse,
    .split-container.reverse,
    .team-member.reverse {
        flex-direction: column;
    }

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

    .section-header-center h2 {
        font-size: 2.3rem;
    }

    .member-image {
        flex: 0 0 200px;
    }

    .member-image img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

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

    .split-text h2 {
        font-size: 1.8rem;
    }

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

    .step-card,
    .tip-card {
        flex: 1 1 100%;
    }

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .process-modern h2 {
        font-size: 2rem;
    }

    .number-box .number {
        font-size: 3rem;
    }
}
