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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #faf8f6;
    --bg-gray: #f0ede8;
    --border-color: #e0d8cc;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-light);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.sticky-cta a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.story-section {
    padding: 8rem 5%;
    background: var(--text-light);
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.story-narrow p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.inline-cta {
    margin-top: 3rem;
}

.inline-cta a {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: color 0.3s;
}

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

.problem-amplify {
    padding: 7rem 5%;
    background: var(--bg-gray);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 3px;
}

.insight-section {
    padding: 8rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
}

.insight-container {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-lead {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.7;
    font-weight: 300;
}

.insight-cards {
    display: flex;
    gap: 3rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.insight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.method-section {
    padding: 7rem 5%;
    background: var(--text-light);
}

.method-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.method-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.method-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.cta-inline-block {
    text-align: center;
    margin-top: 4rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.testimonial-visual {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
}

.testimonial-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.testimonial-item blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-item cite {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}

.trust-signals {
    padding: 7rem 5%;
    background: var(--text-light);
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.services-premium {
    padding: 8rem 5%;
    background: var(--bg-gray);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 3px;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-includes span {
    font-size: 0.9rem;
    color: #666;
    padding-left: 1.2rem;
    position: relative;
}

.service-includes span:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.cta-service:hover {
    background: var(--secondary-color);
}

.urgency-section {
    padding: 5rem 5%;
    background: var(--text-light);
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #8b6f47, #d4a574);
    color: var(--text-light);
    border-radius: 3px;
}

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-light);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-urgency:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.benefits-deep {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.benefits-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.benefits-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-row {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-row img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    border-radius: 3px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #444;
}

.form-section {
    padding: 8rem 5%;
    background: var(--bg-gray);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.main-form {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
}

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

.checkbox-group {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-push {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

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

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.final-content p {
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-light);
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
}

.cta-final:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--text-light);
    padding: 1.5rem 5%;
    z-index: 9999;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.btn-reject:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.page-hero {
    padding: 10rem 5% 5rem;
    background: var(--bg-gray);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.3rem;
    color: #555;
}

.about-story,
.values-section,
.team-section,
.cta-about,
.services-full,
.comparison-section,
.faq-section,
.cta-services,
.contact-section,
.map-section,
.faq-contact {
    padding: 5rem 5%;
}

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

.story-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.story-block img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 3px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    color: #444;
}

.values-section {
    background: var(--bg-gray);
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2rem;
    background: var(--text-light);
    border-radius: 3px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.team-section {
    background: var(--text-light);
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.cta-about {
    background: var(--bg-gray);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--secondary-color);
}

.services-full {
    background: var(--text-light);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 3px;
    position: relative;
}

.service-detail.featured-service {
    border: 3px solid var(--secondary-color);
}

.service-detail.vip-service {
    background: linear-gradient(135deg, #2c1810, #1a0f08);
    color: var(--text-light);
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 2px;
}

.badge-large.vip {
    background: var(--accent-color);
    color: var(--primary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.vip-service .service-header h3 {
    color: var(--accent-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.vip-service .service-price-large {
    color: var(--accent-color);
}

.service-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-content img {
    width: 40%;
    height: 350px;
    object-fit: cover;
    border-radius: 3px;
}

.service-description {
    flex: 1;
}

.service-description h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.vip-service .service-description h4 {
    color: var(--accent-color);
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-description ul li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-description ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.vip-service .service-description ul li:before {
    color: var(--accent-color);
}

.cta-service-page {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s;
}

.cta-service-page:hover {
    background: var(--secondary-color);
}

.cta-service-page.primary {
    background: var(--secondary-color);
}

.cta-service-page.primary:hover {
    background: var(--primary-color);
}

.vip-service .cta-service-page {
    background: var(--accent-color);
    color: var(--primary-color);
}

.vip-service .cta-service-page:hover {
    background: var(--text-light);
}

.comparison-section {
    background: var(--bg-gray);
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--text-light);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
}

.comparison-table tr.highlight-row {
    background: #fff9f0;
}

.comparison-table tr.vip-row {
    background: #f5f0e8;
}

.faq-section {
    background: var(--text-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.cta-services {
    background: var(--bg-gray);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-section {
    background: var(--text-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #444;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.contact-cta {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 3px;
}

.contact-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.map-section {
    background: var(--bg-gray);
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.map-placeholder {
    background: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.map-directions {
    font-size: 1rem;
    color: #666;
}

.faq-contact {
    background: var(--text-light);
}

.thanks-hero {
    padding: 10rem 5% 8rem;
    background: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #555;
}

.thanks-info h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.thanks-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.thanks-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.thanks-service-info {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 3rem;
}

.thanks-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.selected-service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.thanks-extra {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.thanks-extra h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-extra p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-extra a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.legal-page {
    padding: 8rem 5% 5rem;
    background: var(--text-light);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.legal-container ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #444;
}

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

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-light);
}

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

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

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .split-content,
    .benefit-row,
    .story-block,
    .service-content,
    .contact-container {
        flex-direction: column;
    }

    .split-image,
    .benefit-row img,
    .story-block img,
    .service-content img {
        width: 100%;
    }

    .insight-cards,
    .testimonial-grid,
    .team-grid,
    .thanks-steps {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-floating {
        padding: 1rem 4%;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .story-narrow h2,
    .method-wrapper h2,
    .trust-container h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}