* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2c5f2d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #2c5f2d;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

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

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

.service-showcase {
    padding: 5rem 2rem;
    background: #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.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

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

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

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

.testimonial-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.author {
    font-weight: 600;
    color: #2c5f2d;
}

.split-cta {
    display: flex;
    min-height: 500px;
}

.split-left-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #2c5f2d;
}

.cta-content {
    max-width: 500px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-large:hover {
    transform: scale(1.05);
}

.split-right-cta {
    flex: 1;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.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.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

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

.sticky-cta a:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

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

.cookie-content a {
    color: #78b878;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: #e6f2e6;
}

.split-about {
    display: flex;
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

.timeline-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-left: 3px solid #2c5f2d;
    padding-left: 2rem;
}

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

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.split-cta-about {
    display: flex;
    min-height: 500px;
}

.services-detail {
    padding: 3rem 2rem;
    background: #fff;
}

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.service-detail-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-detail-text > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

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

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

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

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

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

.services-cta {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #2c5f2d;
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

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

.additional-info {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-container > p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.info-boxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.info-box p {
    color: #666;
    line-height: 1.7;
}

.location-info {
    padding: 5rem 2rem;
    background: #fff;
}

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.location-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.location-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #e6f2e6;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 1.1rem;
}

.thanks-info {
    padding: 5rem 2rem;
    background: #fff;
}

.thanks-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.thanks-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

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

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

.thanks-step p {
    color: #666;
    line-height: 1.7;
}

.thanks-cta {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

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

.thanks-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.legal-content {
    padding: 3rem 2rem;
    background: #fff;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

.legal-container ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #555;
    line-height: 1.8;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: none;
}

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

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

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .split-reverse,
    .split-about,
    .split-cta,
    .split-cta-about,
    .service-detail-split,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

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

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

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

    .testimonials {
        flex-direction: column;
    }

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

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

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

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        width: auto;
    }

    .values-grid,
    .info-boxes,
    .thanks-steps {
        flex-direction: column;
    }
}

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

    .section-header h2,
    .split-text h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}