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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e4029;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd7;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 5%;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin-left: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5%;
    align-items: center;
    position: relative;
}

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

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -5%;
    margin-top: 3rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.2);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

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

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

.intro-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.intro-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.intro-text-left {
    flex: 1.2;
    padding-right: 2rem;
}

.intro-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-text-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.intro-image-right {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px -15px 50px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 8%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    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);
}

.service-large {
    flex: 1 1 calc(60% - 2rem);
    margin-top: 2rem;
}

.service-offset {
    flex: 1 1 calc(40% - 2rem);
    margin-top: -2rem;
}

.service-small {
    flex: 1 1 calc(35% - 2rem);
    margin-top: 1.5rem;
}

.service-wide {
    flex: 1 1 calc(65% - 2rem);
    margin-top: -1rem;
}

.service-medium {
    flex: 1 1 calc(50% - 2rem);
    margin-top: 2.5rem;
}

.service-accent {
    flex: 1 1 calc(50% - 2rem);
    margin-top: -1.5rem;
}

.service-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-select {
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-offset {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-visual {
    flex: 1;
    padding-top: 2rem;
}

.form-visual h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-visual p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.form-wrapper {
    flex: 1.2;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    margin-top: -3rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected-service-display {
    padding: 1rem 1.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

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

.trust-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-item-offset {
    flex: 1 1 calc(40% - 2rem);
    margin-top: 2rem;
}

.trust-item-elevated {
    flex: 1 1 calc(60% - 2rem);
    margin-top: -2rem;
}

.trust-item-wide {
    flex: 1 1 100%;
    margin-top: 1rem;
}

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

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

.cta-bottom-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.cta-offset-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    transform: rotate(-1deg);
    box-shadow: 0 8px 40px rgba(45, 95, 63, 0.2);
}

.cta-offset-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-offset-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-offset-block .cta-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta-offset-block .cta-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
}

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

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 80px;
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story-offset {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-block {
    flex: 1;
    margin-top: -3rem;
}

.story-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.story-text-block {
    flex: 1.2;
    padding-left: 2rem;
}

.story-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

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

.philosophy-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-large {
    flex: 1 1 100%;
}

.philosophy-offset {
    flex: 1 1 calc(45% - 2rem);
    margin-top: -2rem;
}

.philosophy-elevated {
    flex: 1 1 calc(55% - 2rem);
    margin-top: 2rem;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

.process-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.process-steps-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background-color: var(--bg-light);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    position: relative;
}

.step-offset-right {
    margin-left: 10%;
}

.step-offset-left {
    margin-right: 10%;
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.values-visual {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.values-content-offset {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 8%;
}

.values-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.8rem;
    background-color: var(--bg-white);
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
}

.value-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.services-detailed {
    padding: 3rem 5% 6rem;
    background-color: var(--bg-white);
}

.services-intro-text {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 8%;
}

.services-intro-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.card-offset-left {
    flex-direction: row-reverse;
    margin-left: 5%;
}

.card-offset-right {
    flex-direction: row;
    margin-right: 5%;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

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

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

.additional-info {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.info-content-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.info-content-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.info-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-main {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.contact-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-location-visual {
    flex: 1;
    margin-top: -2rem;
}

.location-placeholder {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.location-placeholder p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

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

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

.availability-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.availability-step {
    background-color: var(--bg-white);
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.availability-step strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.availability-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cta-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.thanks-section {
    margin-top: 80px;
    min-height: 70vh;
    padding: 5rem 5%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.thanks-service-info {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-steps {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1 1 calc(50% - 1.5rem);
    text-align: left;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.thanks-step strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.legal-page {
    margin-top: 80px;
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-container 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);
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-offset-container,
    .intro-grid,
    .story-container {
        flex-direction: column;
    }

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

    .hero-image-offset,
    .intro-image-right,
    .story-image-block {
        margin: 2rem 0 0 0;
    }

    .service-large,
    .service-offset,
    .service-small,
    .service-wide,
    .service-medium,
    .service-accent {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .form-container-asymmetric,
    .contact-grid-asymmetric {
        flex-direction: column;
    }

    .form-wrapper {
        margin-top: 0;
    }

    .trust-item-offset,
    .trust-item-elevated {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .philosophy-offset,
    .philosophy-elevated {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .card-offset-left,
    .card-offset-right {
        margin: 0;
    }

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

    .thanks-step {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        margin-left: 0;
        order: 3;
        flex-basis: 100%;
        margin-top: 0.5rem;
    }

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

    .hero-text-block p {
        font-size: 1.05rem;
    }

    h2 {
        font-size: 2rem;
    }

    .step-offset-right,
    .step-offset-left {
        margin: 0;
    }

    .cta-offset-block {
        transform: rotate(0deg);
    }

    .services-header-offset,
    .values-content-offset {
        padding-left: 0;
    }

    .contact-location-visual {
        margin-top: 0;
    }
}
