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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a876;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-light);
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

.split-section {
    display: flex;
    margin: 80px 0;
}

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

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

.service-card .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    margin: 0 24px 24px;
}

.cta-center {
    text-align: center;
}

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

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

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

.trust-item {
    flex: 1;
}

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

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

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

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

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

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

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

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

.contact-form button {
    width: 100%;
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    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: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    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;
    gap: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

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

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

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

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

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

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

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-intro-text {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.cta-full {
    padding: 100px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-full h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-content {
    flex: 1;
    padding: 20px 0;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 24px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.pricing-note {
    background-color: var(--bg-light);
    padding: 40px 0;
    text-align: center;
}

.pricing-note p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

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

.contact-approach h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    gap: 30px;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.additional-info {
    padding: 80px 0;
}

.additional-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

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

.service-confirmation {
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

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

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

.contact-reminder h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.legal-updated {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .services-grid,
    .trust-grid,
    .footer-grid,
    .service-detail-item,
    .contact-split,
    .approach-steps {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

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

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

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

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

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