* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2c3d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.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;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #1a2c3d;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #52b788;
}

.ad-label {
    color: #95b4c8;
    font-size: 0.8rem;
    font-style: italic;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 4rem;
    background-color: #f8f9fa;
    flex-direction: column;
    align-items: flex-start;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2c3d;
}

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

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1f4a36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

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

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

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background-color: #1f4a36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.intro-section,
.features-split,
.trust-section,
.story-section,
.approach-section,
.expertise-section {
    padding: 5rem 0;
}

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

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

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

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

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

.split-left-content h2,
.split-right-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2c3d;
}

.split-left-content p,
.split-right-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

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

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

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

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

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

.cta-centered {
    text-align: center;
}

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

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

.form-left p {
    font-size: 1.1rem;
    color: #6c757d;
}

.form-right {
    flex: 1;
}

.consultation-form,
.service-request-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

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

.final-cta-section,
.cta-about-section,
.contact-cta-section {
    padding: 5rem 2rem;
    background-color: #1a2c3d;
    text-align: center;
}

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

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

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

.main-footer {
    background-color: #0f1d2a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    color: #95a5b3;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #7a8a98;
    line-height: 1.6;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

.hero-content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #6c757d;
}

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

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

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

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

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

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

.value-item p {
    color: #495057;
    line-height: 1.6;
}

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

.expertise-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
}

.expertise-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 1.5rem;
    line-height: 1;
}

.contact-info-section {
    padding: 5rem 2rem;
}

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

.contact-details {
    flex: 1;
}

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

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

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

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.directions-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.service-areas-section {
    padding: 5rem 2rem;
}

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

.area-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.area-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a2c3d;
}

.area-item p {
    color: #6c757d;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2c3d;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.7;
}

.service-detail-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 0.95rem;
    color: #6c757d;
}

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

.form-section-services {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-container-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

.form-container-centered p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2c3d;
}

.thanks-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2d6a4f;
}

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

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

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a2c3d;
}

.step-item p {
    color: #6c757d;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.contact-reminder {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
}

.contact-reminder p {
    color: #495057;
    margin: 0;
}

.legal-page {
    padding: 3rem 2rem;
    min-height: 600px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a2c3d;
}

.last-updated {
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #2c3e50;
}

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

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

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #495057;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .page-hero-split,
    .split-container,
    .form-split-container,
    .contact-split-container,
    .service-detail-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-label {
        padding-left: 0;
        border-left: none;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

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

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

@media (max-width: 600px) {
    .hero-left h1,
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .split-left-content h2,
    .split-right-content h2 {
        font-size: 1.8rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
