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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #c9a961;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: rotate(-3deg) translateY(-30px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-offset img {
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
}

.intro-overlap {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 6rem 5%;
    background: var(--bg-light);
    position: relative;
    margin-top: -80px;
}

.intro-card {
    flex: 1.2;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-60px);
}

.intro-card h2 {
    color: var(--primary-color);
}

.intro-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-preview {
    padding: 8rem 5%;
    background: white;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 8%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    flex: 0 1 calc(55% - 1rem);
}

.card-medium {
    flex: 0 1 calc(45% - 1rem);
}

.card-small {
    flex: 0 1 calc(30% - 1rem);
}

.card-small-alt {
    flex: 0 1 calc(35% - 1rem);
}

.card-offset {
    flex: 0 1 calc(40% - 1rem);
    transform: translateY(30px);
}

.card-highlight {
    flex: 0 1 calc(48% - 1rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.why-choose-offset {
    display: flex;
    gap: 5rem;
    padding: 8rem 5%;
    background: var(--bg-light);
    align-items: center;
}

.why-image {
    flex: 0.8;
    transform: rotate(2deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.12);
}

.why-image img {
    border-radius: 8px;
}

.why-content {
    flex: 1.2;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.why-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.testimonials-staggered {
    padding: 8rem 5%;
    background: white;
}

.testimonials-staggered h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
}

.testi-1 {
    transform: translateY(-20px);
}

.testi-2 {
    transform: translateY(20px);
}

.testi-3 {
    transform: translateY(-10px);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.client-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.process-visual {
    padding: 8rem 5%;
    background: var(--primary-color);
    color: white;
}

.process-visual h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-block {
    flex: 0 1 calc(25% - 1.5rem);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.step-1 {
    transform: translateY(-15px);
}

.step-2 {
    transform: translateY(15px);
}

.step-3 {
    transform: translateY(-10px);
}

.step-4 {
    transform: translateY(10px);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-block h3 {
    color: white;
    margin-bottom: 0.8rem;
}

.step-block p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-final-offset {
    display: flex;
    gap: 4rem;
    padding: 8rem 5%;
    background: var(--bg-light);
    align-items: center;
}

.cta-content-block {
    flex: 1.3;
}

.cta-content-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.main-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cta-visual-element {
    flex: 0.7;
    transform: rotate(-2deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
}

.cta-visual-element img {
    border-radius: 8px;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.about-intro-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    transform: rotate(2deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: 8px;
}

.values-offset {
    padding: 6rem 5%;
    background: white;
}

.values-offset h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 0 1 calc(50% - 1rem);
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card:nth-child(1) {
    transform: translateY(-20px);
}

.value-card:nth-child(2) {
    transform: translateY(20px);
}

.value-card:nth-child(3) {
    transform: translateY(10px);
}

.value-card:nth-child(4) {
    transform: translateY(-10px);
}

.team-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 3rem;
}

.team-members {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.member-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-card:nth-child(2) {
    transform: translateY(30px);
}

.member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-card h3,
.member-card .member-role,
.member-card p {
    padding: 0 2rem;
}

.member-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-card p {
    padding-bottom: 2rem;
    color: var(--text-light);
}

.philosophy-block {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: white;
    align-items: center;
}

.philosophy-content {
    flex: 1.2;
}

.philosophy-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.philosophy-image {
    flex: 0.8;
    transform: rotate(-2deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    border-radius: 8px;
}

.timeline-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.timeline-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 120px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.timeline-content h3 {
    margin-bottom: 0.8rem;
}

.cta-about {
    padding: 6rem 5%;
    text-align: center;
    background: white;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro {
    padding: 2rem 5% 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

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

.pricing-notes {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.pricing-notes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.notes-grid {
    display: flex;
    gap: 2rem;
}

.note-card {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.note-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-process {
    padding: 6rem 5%;
    background: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-cards {
    display: flex;
    gap: 2rem;
}

.process-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.process-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-services {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-services h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-services p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.services-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: flex;
    gap: 1.5rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1.1rem;
}

.info-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-visual {
    flex: 1;
    transform: rotate(-2deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-visual img {
    border-radius: 8px;
}

.contact-map {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.map-info {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.map-directions {
    flex: 1;
}

.map-directions h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.map-directions h3:first-child {
    margin-top: 0;
}

.map-placeholder {
    flex: 1.5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.visit-info {
    padding: 6rem 5%;
    background: white;
}

.visit-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.visit-cards {
    display: flex;
    gap: 2rem;
}

.visit-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.visit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.visit-card ul {
    list-style: none;
}

.visit-card li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
}

.visit-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.faq-contact {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 6rem 5%;
    text-align: center;
    background: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.email-large {
    font-size: 2rem;
    margin-top: 2rem;
}

.email-large a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-hero {
    display: flex;
    gap: 4rem;
    padding: 10rem 5% 6rem;
    align-items: center;
    min-height: 100vh;
}

.thanks-content {
    flex: 1.2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-info p {
    margin-bottom: 1rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.thanks-visual {
    flex: 0.8;
    transform: rotate(2deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-visual img {
    border-radius: 8px;
}

.legal-page {
    padding: 10rem 5% 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-floating {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 5% 4rem;
    }

    .hero-text-block {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-offset {
        transform: none;
        margin-top: 2rem;
    }

    .intro-overlap,
    .why-choose-offset,
    .cta-final-offset,
    .about-intro-split,
    .philosophy-block,
    .service-detail-card,
    .contact-split,
    .thanks-hero {
        flex-direction: column;
    }

    .services-asymmetric,
    .values-grid,
    .team-members,
    .process-steps,
    .notes-grid,
    .process-cards,
    .visit-cards {
        flex-direction: column;
    }

    .card-large, .card-medium, .card-small, .card-small-alt, .card-offset, .card-highlight {
        flex: 1 1 100%;
        transform: none;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .form-row,
    .form-grid {
        flex-direction: column;
    }

    .map-info {
        flex-direction: column;
    }
}