* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 1.5rem;
}

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

.nav-main a:hover {
    color: #4CAF50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-image {
    flex: 1;
    background-color: #f1f8e9;
}

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

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

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

.services-split {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2d5016;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4CAF50;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #2d5016;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

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

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

.form-wrapper > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.service-form {
    background-color: #fafafa;
    padding: 2rem;
    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 textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

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

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

.trust-split {
    display: flex;
    min-height: 70vh;
    background-color: #f5f5f5;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5016;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

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

.testimonial cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

.trust-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.expertise-full {
    padding: 5rem 5%;
    background-color: #2d5016;
    color: #ffffff;
}

.expertise-full h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    flex: 1;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.6;
}

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

.thanks-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 5%;
    background-color: #2d5016;
    color: #ffffff;
}

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

.thanks-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-hero .service-selected {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.content-page {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5016;
}

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

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

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

.content-page ul,
.content-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #555;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.content-page a {
    color: #4CAF50;
    text-decoration: underline;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background-color: #2d5016;
    color: #ffffff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.contact-detail p {
    font-size: 1rem;
    opacity: 0.95;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
}

.about-hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2d5016;
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    min-height: 60vh;
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

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

.about-image {
    flex: 1;
    background-color: #f1f8e9;
}

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

.services-page-hero {
    background-color: #2d5016;
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

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

.services-page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

.service-item-image {
    flex: 0 0 45%;
    background-color: #f1f8e9;
}

.service-item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-item-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

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

.service-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 1rem 0;
}

.service-item-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5016;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.service-item-button:hover {
    background-color: #1f3810;
    transform: translateY(-2px);
}

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

    .hero-content,
    .intro-content,
    .trust-content,
    .about-content,
    .contact-info {
        padding: 3rem 5%;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 0 1 calc(50% - 1.5rem);
    }

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

    .service-item {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-item-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .footer-content {
        flex-direction: column;
    }
}