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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

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

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2d7a3e;
}

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 6px 14px;
    font-size: 13px;
    color: #666;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

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

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-image-right {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #236330;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d7a3e;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border: 2px solid #2d7a3e;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.how-it-works {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.how-it-works h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 30px;
    background-color: #ffffff;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.services-form-container {
    flex: 1;
}

.services-form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

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

.services-list-container {
    flex: 1;
}

.services-list-container h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.services-list li {
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #2d7a3e;
}

.services-list li strong {
    font-size: 19px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.services-list li .price {
    display: inline-block;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 12px;
}

.services-list li p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-top: 12px;
}

.trust-section {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.trust-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.testimonials-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 36px 32px;
    border-radius: 6px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.cta-section {
    padding: 120px 30px;
    background-color: #2d7a3e;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #e8f5ea;
    margin-bottom: 36px;
}

.cta-content .cta-secondary {
    background-color: #ffffff;
    color: #2d7a3e;
    border: none;
}

.cta-content .cta-secondary:hover {
    background-color: #f0f0f0;
}

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 30px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #2d7a3e;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #252525;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.page-header {
    background-color: #f9f9f9;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.about-content {
    padding: 100px 30px;
    background-color: #ffffff;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.process-section {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-item {
    flex: 1;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.process-item h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.process-item p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 24px 24px;
    color: #4a4a4a;
}

.team-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.values-section {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d7a3e;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-content-right,
.service-content-left {
    flex: 1;
}

.service-content-right h2,
.service-content-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 24px;
}

.service-content-right p,
.service-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-content-right ul,
.service-content-left ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-content-right ul li,
.service-content-left ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.cta-inline {
    display: inline-block;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #236330;
}

.faq-section {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d7a3e;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid #2d7a3e;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.map-section {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.map-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-section p {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #4a4a4a;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.info-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.info-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.info-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 36px 32px;
    border-radius: 6px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d7a3e;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 36px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details ul li {
    font-size: 16px;
    line-height: 1.7;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
}

.thanks-details ul li:last-child {
    border-bottom: none;
}

.thanks-details ul li:before {
    content: "✓ ";
    color: #2d7a3e;
    font-weight: 700;
    margin-right: 8px;
}

.selected-service {
    background-color: #e8f5ea;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #2d7a3e;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 30px 100px;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d7a3e;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

.legal-text a:hover {
    color: #236330;
}

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

    .service-block.reverse {
        flex-direction: column;
    }

    .steps-container,
    .testimonials-grid,
    .values-grid,
    .process-grid,
    .info-grid,
    .footer-columns {
        flex-direction: column;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .trust-text h2,
    .team-text h2,
    .about-text h2,
    .contact-info h2,
    .map-section h2,
    .info-section h2 {
        font-size: 32px;
    }

    .how-it-works h2,
    .testimonials-section h2,
    .values-section h2,
    .faq-section h2 {
        font-size: 34px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }
}