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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B7355;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --border-color: #E0DDD8;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    color: var(--bg-white);
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #234a30;
}

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

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

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.hero-image-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    z-index: 1;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.intro-asymmetric {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-block-offset {
    flex: 1;
    min-width: 300px;
    transform: translateY(-3rem);
}

.label-small {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-text-float {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    transform: translateY(2rem);
}

.intro-text-float p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.visual-break {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.image-overlap-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image-overlap-left img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-overlap-right {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    transform: translateX(-2rem);
    position: relative;
    z-index: 1;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-grid-asymmetric {
    padding: 8rem 2rem;
    background-color: var(--bg-white);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 4rem;
    transform: translateX(10%);
}

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

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    width: calc(60% - 1rem);
    min-width: 350px;
}

.card-medium {
    width: calc(50% - 1rem);
    min-width: 320px;
}

.card-small {
    width: calc(40% - 1rem);
    min-width: 300px;
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234a30;
}

.testimonial-overlap {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.testimonial-content {
    flex: 1;
    color: var(--bg-white);
    padding: 2rem;
    transform: translateX(3rem);
    position: relative;
    z-index: 2;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-style: normal;
    opacity: 0.9;
    font-size: 1.1rem;
}

.testimonial-image {
    flex: 1;
    transform: translateX(-2rem);
}

.testimonial-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trust-builder {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

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

.form-section-offset {
    padding: 8rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.form-intro {
    flex: 1;
    max-width: 450px;
    transform: translateY(2rem);
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-asymmetric {
    flex: 1;
    max-width: 600px;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    transform: translateY(-2rem);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

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

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

.btn-submit:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.final-cta-overlap {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.cta-content-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
}

.cta-content-float h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-content-float p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

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

.sticky-cta-btn {
    display: block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.page-hero-minimal {
    padding: 12rem 2rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.story-section-offset {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-left {
    flex: 1;
    transform: translateY(-3rem);
}

.story-image-left img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-content-right {
    flex: 1;
    transform: translateY(2rem);
}

.philosophy-asymmetric {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.point-block {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.offset-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 70%;
}

.offset-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 70%;
}

.team-overlap {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-image-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-photo {
    flex: 1;
}

.team-photo img {
    border-radius: 12px;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.values-section {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.commitment-banner {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

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

.commitment-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    color: var(--bg-white);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-block.left-align {
    flex-direction: row;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
}

.service-number {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.process-section {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

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

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

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

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

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-info-asymmetric {
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.offset-style {
    margin-left: 0;
    margin-right: auto;
    max-width: 80%;
}

.offset-style-reverse {
    margin-left: auto;
    margin-right: 0;
    max-width: 80%;
}

.address-details,
.email-details,
.hours-details {
    margin-bottom: 1.5rem;
}

.address-line {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.95rem;
    color: var(--text-light);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--text-light);
}

.info-note {
    font-style: italic;
}

.info-note p {
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
    position: sticky;
    top: 150px;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.visual-caption {
    margin-top: 1rem;
    text-align: center;
}

.visual-caption p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.map-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.location-notes {
    max-width: 800px;
    margin: 0 auto;
}

.location-notes h3 {
    margin-bottom: 1rem;
}

.location-notes p {
    margin-bottom: 0.75rem;
}

.faq-contact {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.final-cta-contact {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.final-cta-contact h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-contact p {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.final-cta-contact a {
    color: var(--bg-white);
    text-decoration: underline;
}

.thanks-page {
    padding: 12rem 2rem 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
    max-width: 600px;
}

.success-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.service-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps {
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.what-happens-next {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.what-happens-next h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

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

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

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

.legal-page {
    padding: 12rem 2rem 6rem;
    background-color: var(--bg-white);
}

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

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

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

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

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

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        border-radius: 12px;
        flex-direction: column;
        gap: 1rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding-top: 6rem;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .hero-image-right img {
        border-radius: 12px;
    }

    .intro-asymmetric,
    .visual-break,
    .story-section-offset,
    .team-image-grid,
    .contact-info-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .intro-block-offset,
    .intro-text-float,
    .content-overlap-right {
        transform: none;
    }

    .offset-left,
    .offset-right,
    .offset-style,
    .offset-style-reverse {
        max-width: 100%;
        margin: 0;
    }

    .section-header-offset {
        transform: none;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }

    .testimonial-overlap {
        flex-direction: column;
    }

    .testimonial-content,
    .testimonial-image {
        transform: none;
    }

    .trust-stats {
        gap: 3rem;
    }

    .form-section-offset,
    .thanks-page {
        flex-direction: column;
    }

    .form-intro,
    .contact-form-asymmetric {
        transform: none;
        max-width: 100%;
    }

    .cta-content-float h2 {
        font-size: 2rem;
    }

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

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

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-floating {
        padding: 0.75rem 1rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .page-hero-minimal {
        padding-top: 8rem;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }
}
