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

:root {
    --primary-color: #2c3e50;
    --accent-color: #c89d66;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.main-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-visual {
    flex: 1;
    min-height: 85vh;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary,
.cta-large {
    background: var(--accent-color);
    color: var(--white);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-primary:hover,
.cta-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.cta-large {
    font-size: 18px;
    padding: 20px 50px;
}

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    border-radius: 8px;
    width: 100%;
}

.split-right h2,
.split-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.2;
}

.split-right p,
.split-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.benefit-list {
    list-style: none;
    margin-top: 28px;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.intro-section,
.philosophy-section,
.trust-section,
.value-proposition {
    background: var(--white);
}

.intro-section:nth-of-type(even),
.philosophy-section:nth-of-type(even) {
    background: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 19px;
    color: var(--text-light);
}

.services-highlight {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-cta-center {
    text-align: center;
    margin-top: 50px;
}

.testimonial-block {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-block p {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 12px;
}

.testimonial-block cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
}

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

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

.process-section {
    padding: 100px 40px;
    background: var(--white);
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

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

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

.booking-section {
    background: var(--bg-light);
}

.contact-info-box {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cta-content-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content-center p {
    font-size: 19px;
    margin-bottom: 36px;
}

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 120px 40px 80px;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

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

.service-detail-block {
    padding: 60px 0;
}

.service-detail-block:nth-child(even) {
    background: var(--bg-light);
}

.service-price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0 24px;
}

.services-cta-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.values-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-intro,
.story-section,
.expertise-section {
    padding: 80px 0;
}

.approach-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.approach-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 260px;
}

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

.approach-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    padding: 100px 40px;
    background: var(--white);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

.cta-about {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
}

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

.contact-info-detail {
    margin-bottom: 36px;
}

.contact-info-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-info-detail a:hover {
    color: var(--primary-color);
}

.map-placeholder {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-cta-box p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.faq-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.final-contact-cta {
    padding: 80px 40px;
    background: var(--white);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

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

.thanks-details {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 36px;
}

.thanks-details p {
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.thanks-next-steps li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
}

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.thanks-contact {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 40px 100px;
    background: var(--white);
}

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

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

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-content em {
    color: var(--text-light);
}

.legal-content strong {
    color: var(--primary-color);
}

.legal-back {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-back a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-back a:hover {
    color: var(--primary-color);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-dark);
}

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

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

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

    .hero-visual {
        min-height: 400px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .nav-links {
        gap: 24px;
    }
}

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

    .hero-text p {
        font-size: 18px;
    }

    .split-right h2,
    .split-left h2 {
        font-size: 32px;
    }

    .section-header-center h2 {
        font-size: 34px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .services-grid,
    .process-flow,
    .values-grid,
    .approach-blocks,
    .testimonials-grid {
        gap: 24px;
    }

    .service-card,
    .process-step,
    .value-card {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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

    .page-hero {
        padding: 80px 20px 60px;
    }

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

    .cta-content-center h2 {
        font-size: 32px;
    }

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

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

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

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .split-container {
        padding: 40px 20px;
    }

    .services-highlight,
    .process-section,
    .values-section,
    .approach-section,
    .testimonials-section {
        padding: 60px 20px;
    }

    .booking-form {
        padding: 24px;
    }

    .footer-content {
        gap: 30px;
    }
}