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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

.nav-left .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d7a3e;
}

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

.nav-right a {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d7a3e;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #256632;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f4f4f4;
    color: #333;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e0e0e0;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.intro-visual {
    flex: 1;
}

.intro-visual img {
    width: 100%;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
    padding: 0 4rem;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Values Split Section */
.values-split {
    display: flex;
    gap: 2rem;
    padding: 4rem 5%;
}

.value-card {
    flex: 1;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card.accent {
    background-color: #2d7a3e;
    color: #fff;
}

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

.value-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 5%;
    background-color: #fff;
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

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

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #256632;
}

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

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #2d7a3e;
    margin-top: 2rem;
    border-radius: 4px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
}

.selected-service-display span {
    display: inline-block;
    margin-right: 1rem;
}

#selectedServicePrice {
    font-weight: 700;
    color: #2d7a3e;
}

.form-wrapper {
    flex: 1;
}

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

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

.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;
    transition: border-color 0.3s ease;
}

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

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

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

/* Testimonials Split */
.testimonials-split {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

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

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #2d7a3e;
}

/* CTA Split Final */
.cta-split-final {
    display: flex;
    align-items: center;
    min-height: 450px;
    background-color: #1a1a1a;
}

.cta-content {
    flex: 1;
    padding: 4rem 5%;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-visual {
    flex: 1;
    height: 100%;
}

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

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: #2d7a3e;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #2d7a3e;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2d7a3e;
    color: #fff;
}

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

.cookie-reject {
    background-color: #555;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #444;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 2rem;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(45, 122, 62, 0.4);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta:hover {
    background-color: #256632;
    transform: scale(1.05);
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Split */
.about-split,
.mission-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 5rem 5%;
}

.mission-split.reverse {
    flex-direction: row-reverse;
    background-color: #f9f9f9;
}

.about-image,
.mission-image {
    flex: 1;
}

.about-image img,
.mission-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text,
.mission-text {
    flex: 1;
}

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

.about-text p,
.mission-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.team-member p {
    color: #666;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.values-list {
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.value-item p {
    color: #555;
}

/* CTA About */
.cta-about,
.cta-services {
    padding: 4rem 5%;
    background-color: #2d7a3e;
    color: #fff;
    text-align: center;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-about .cta-primary,
.cta-services .cta-primary {
    background-color: #fff;
    color: #2d7a3e;
}

.cta-about .cta-primary:hover,
.cta-services .cta-primary:hover {
    background-color: #f4f4f4;
}

/* Services Detail */
.services-detail {
    padding: 3rem 5%;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d7a3e;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #256632;
}

/* Extra Services */
.extra-services {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.extra-services h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.extra-grid {
    display: flex;
    gap: 2rem;
}

.extra-item {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.extra-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.extra-item p {
    color: #666;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p,
.contact-block ul {
    color: #555;
    font-size: 1.05rem;
}

.contact-block ul {
    list-style: none;
    padding-left: 1rem;
}

.contact-block ul li {
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: #2d7a3e;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 122, 62, 0.9);
    color: #fff;
    padding: 1.5rem;
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

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

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

.faq-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d7a3e;
}

.faq-item p {
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d7a3e;
}

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

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

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #555;
}

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

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

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

.step {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step p {
    font-size: 0.95rem;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2d7a3e;
    color: #fff;
}

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

.btn-secondary {
    background-color: #f4f4f4;
    color: #333;
}

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

/* Thanks Info */
.thanks-info {
    padding: 3rem 5%;
    background-color: #f9f9f9;
}

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

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

.info-box p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #2d7a3e;
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.last-update {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d7a3e;
}

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

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 4%;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split,
    .intro-split,
    .intro-split.reverse,
    .about-split,
    .mission-split.reverse,
    .service-item,
    .service-item.reverse,
    .service-detail-item,
    .service-detail-item.reverse,
    .contact-split,
    .form-container-split,
    .cta-split-final {
        flex-direction: column;
    }

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

    .intro-text,
    .about-text,
    .mission-text {
        padding: 2rem 0;
    }

    .values-split,
    .testimonials-grid,
    .team-grid,
    .values-list,
    .extra-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .service-visual img {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .section-header h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .about-text h2,
    .mission-text h2 {
        font-size: 1.8rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}
