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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2d5f3f;
}

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

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: #e8ece9;
}

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

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

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

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

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

.intro-left {
    flex: 1;
    background-color: #dfe3df;
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.value-proposition {
    padding: 90px 40px;
    background-color: #f4f6f5;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
}

.value-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.value-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    border-left: 4px solid #2d5f3f;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.value-card p {
    font-size: 16px;
    color: #555;
}

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

.services-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.services-content {
    flex: 1.3;
}

.services-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-content > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

.price {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2d5f3f;
}

.link-secondary {
    display: inline-block;
    margin-top: 30px;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #1f4529;
}

.services-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    align-self: flex-start;
}

.services-form h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 90px 40px;
    background-color: #f4f6f5;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-container img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #dfe3df;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.disclaimer-section {
    padding: 50px 40px;
    background-color: #fef9f3;
    border-top: 1px solid #e8d4b8;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #6b5844;
    line-height: 1.7;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #b0b8c1;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b8c1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #b0b8c1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

.about-content {
    padding: 90px 40px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

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

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

.values-section {
    padding: 90px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-box {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: #ffffff;
}

.value-box h3 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.value-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.team-text {
    flex: 1;
}

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

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.approach-section {
    padding: 90px 40px;
    background-color: #f4f6f5;
}

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

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

.step-item {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
}

.step-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 40px;
    background-color: #2d5f3f;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2d5f3f;
}

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

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-pricing {
    padding: 20px 0;
    border-top: 2px solid #2d5f3f;
}

.price-label {
    font-size: 15px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
}

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

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

.cta-services {
    padding: 80px 40px;
    background-color: #f4f6f5;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

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

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.additional-info {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.info-card {
    flex: 1;
    padding: 35px 30px;
    background-color: #ffffff;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5f3f;
    font-weight: 600;
}

.thanks-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f4ed;
    border-radius: 4px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2d5f3f;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
}

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

.thanks-additional {
    margin-top: 50px;
    text-align: left;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
}

.thanks-additional h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-additional ul {
    list-style: none;
}

.thanks-additional ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-additional ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

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

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

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

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

    .value-grid,
    .approach-steps,
    .info-grid {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

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