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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.hero-visual {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

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

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
    gap: 4rem;
}

.intro-split-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-split-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-split-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.intro-split-right {
    flex: 1;
    background-color: #f0f0f0;
}

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

.services-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
}

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

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

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

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

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

.service-card-image {
    flex: 1;
    background-color: #e8f5e9;
    min-height: 350px;
}

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

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

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

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

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

.btn-select-service {
    padding: 0.8rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

.form-visual {
    flex: 1;
}

.form-visual h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.form-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.form-content {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
}

.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.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

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

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

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

.trust-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #34495e;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
    gap: 2rem;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 4rem 5%;
    text-align: center;
}

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

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

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
    gap: 4rem;
}

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

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

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-top: 4px solid #2c5f2d;
}

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

.value-card p {
    font-size: 1rem;
    color: #555;
}

.team-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 5%;
    text-align: center;
}

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

.team-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-detailed {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 5%;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-detail-header {
    display: flex;
}

.service-detail-image {
    flex: 1.2;
    background-color: #e8f5e9;
}

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

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

.service-detail-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 1rem 0;
}

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

.service-detail-content {
    padding: 3rem;
}

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

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

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

.cta-section-centered {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-section-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-note {
    padding: 2rem;
    background-color: #e8f5e9;
    border-left: 4px solid #2c5f2d;
}

.contact-note p {
    margin-bottom: 0.5rem;
    color: #555;
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 5%;
}

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

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

.faq-item {
    flex: 1;
    min-width: 45%;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

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

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

.legal-content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

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

.legal-content a:hover {
    color: #1e4620;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

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

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

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

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

.thanks-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
}

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

.next-steps ul {
    list-style-position: inside;
}

.next-steps li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .service-card-split,
    .form-container-split,
    .about-split,
    .contact-section-split,
    .service-detail-header {
        flex-direction: column;
    }

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

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

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

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

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