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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1e3d29;
    --primary-light: #4a7f5a;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-gray: #6b6b6b;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c44545;
    --success-color: #4a7f5a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-main {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--bg-light);
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-section {
    padding: 90px 0;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 25px 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: var(--primary-dark);
}

.process-section {
    padding: 100px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

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

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-section {
    padding: 100px 0;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    padding: 20px 0;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cta-sticky.visible {
    transform: translateY(0);
}

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

.cta-text {
    font-size: 17px;
    color: var(--bg-white);
    font-weight: 600;
}

.btn-cta-small {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta-small:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 25px 0;
    z-index: 200;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: var(--primary-light);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header {
    padding: 80px 0 50px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.header-lead {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 90px 0;
}

.values-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 90px 0;
}

.clients-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.clients-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.clients-list p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-detailed {
    padding: 80px 0;
}

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

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 20px;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.materials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.materials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.material-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.material-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.material-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 30px 30px;
}

.map-overlay p {
    color: var(--bg-white);
    font-size: 16px;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service {
    font-size: 17px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 40px;
    text-align: left;
}

.next-step {
    flex: 1;
    display: flex;
    gap: 20px;
}

.step-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.next-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-info-minimal {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-info-minimal p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-info-minimal a {
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content {
    padding: 80px 0;
}

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

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 50px 30px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 50px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 80px;
    }

    .contact-split {
        flex-direction: column;
        gap: 50px;
    }

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

    .next-steps {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero-description {
        font-size: 17px;
    }

    .section-title,
    .split-content h2,
    .page-header h1,
    .values-section h2,
    .clients-section h2,
    .cta-section h2,
    .materials-section h2,
    .contact-info h2,
    .faq-section h2 {
        font-size: 32px;
    }

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

    .services-grid {
        gap: 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-small {
        width: 100%;
        text-align: center;
    }

    .values-grid {
        gap: 30px;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .materials-grid {
        gap: 30px;
    }

    .material-item {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .thanks-section h1 {
        font-size: 36px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
