* {
    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: #ffffff;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.ad-disclosure {
    font-size: 0.75rem;
    opacity: 0.85;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    margin: 0 1rem;
}

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

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

.nav-links a:hover {
    opacity: 0.7;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

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

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

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5f5a;
}

.hero-right {
    flex: 1;
    background: #e8f1ed;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    padding: 0 3rem;
    background: #ffffff;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

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

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

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5f5a;
}

.services-grid {
    background: #f9fafb;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-grid .service-card {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.services-grid .service-card:hover {
    transform: translateY(-4px);
}

.services-grid .service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 45%;
    object-fit: cover;
}

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c68;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
}

.price-unit {
    font-size: 1rem;
    color: #7a8c88;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.cta-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.cta-content {
    flex: 1;
    background: #1a4d2e;
    color: #ffffff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
}

.cta-form-wrapper {
    flex: 1;
    background: #f5f9f7;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #d0e0d8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.trust-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5f5a;
}

.trust-image {
    flex: 1;
    padding: 0 3rem;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

.main-footer {
    background: #1a4d2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.page-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #1a4d2e;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2d6a4f;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #4a5f5a;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.8rem;
    color: #4a5f5a;
}

.contact-info {
    background: #f5f9f7;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a4d2e;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 40%;
    object-fit: cover;
}

.service-item-content {
    flex: 1;
    padding: 3rem;
}

.service-item-content h3 {
    margin-top: 0;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #f5f9f7;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-box h1 {
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5f5a;
}

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

.thanks-box .btn-home:hover {
    background: #1a4d2e;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .trust-split,
    .about-split {
        flex-direction: column;
    }

    .services-grid .service-card,
    .service-item {
        flex-direction: column !important;
    }

    .service-card img,
    .service-item img {
        width: 100%;
        height: 300px;
    }

    .hero-left,
    .intro-text,
    .trust-text,
    .cta-content,
    .cta-form-wrapper {
        padding: 3rem 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin: 0;
    }
}