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

:root {
    --primary-color: #2E5339;
    --primary-dark: #1E3A28;
    --accent-color: #D4A574;
    --text-color: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
}

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

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

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

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

.ad-notice {
    background-color: #FFF3CD;
    color: #856404;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #FFE69C;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-asymmetric {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text-block {
    padding: 2rem 0;
}

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-offset {
    padding: 4rem 1.5rem;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
}

.intro-column-large h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-column-large p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.services-cards-irregular {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.cards-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-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-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.process-section {
    padding: 5rem 1.5rem;
}

.process-layout-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-text-block h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.process-image-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-scattered {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.section-title-offset {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    padding-left: 1rem;
}

.testimonials-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section-overlap {
    padding: 5rem 1.5rem;
}

.cta-content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 4rem 2rem;
    border-radius: 8px;
}

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

.cta-content-block p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-section-offset {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    padding: 4rem 1.5rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 3rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    text-align: center;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.btn-cookie-accept:hover {
    background-color: #C19560;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero-about {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-content-narrow {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.hero-content-narrow h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.lead-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-offset {
    padding: 5rem 1.5rem;
}

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

.story-image-left img {
    width: 100%;
    border-radius: 8px;
}

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

.story-text-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-asymmetric {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.section-title-left {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.team-section {
    padding: 5rem 1.5rem;
}

.team-intro-offset {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro-offset h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-intro-offset p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.cta-about {
    padding: 5rem 1.5rem;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 8px;
}

.cta-box-centered h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-hero {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-detail-section {
    padding: 4rem 1.5rem;
}

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

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

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

.btn-service-action {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.additional-services {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.additional-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.pricing-info {
    padding: 5rem 1.5rem;
}

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

.pricing-info-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-info-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-factors {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-factors li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.services-cta {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 4rem 2rem;
    border-radius: 8px;
}

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

.cta-wrapper p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-hero {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    padding: 5rem 1.5rem;
}

.contact-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

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

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

.email-display {
    font-weight: 600;
    color: var(--text-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.opening-hours {
    margin-top: 1rem;
}

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

.day {
    font-weight: 600;
    color: var(--text-color);
}

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

.contact-visual {
    position: relative;
}

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

.visual-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.visual-overlay p {
    margin: 0;
    font-weight: 600;
}

.location-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

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

.location-info {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.location-text h3,
.location-text h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-text h3 {
    font-size: 1.5rem;
}

.location-text h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

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

.transport-list {
    list-style: none;
    margin: 1rem 0;
}

.transport-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.transport-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.location-map {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5E5E5;
    color: var(--text-light);
    font-size: 1.1rem;
}

.visit-cta {
    padding: 5rem 1.5rem;
}

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

.visit-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0;
}

.thanks-section {
    padding: 5rem 1.5rem;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-icon svg {
    margin: 0 auto;
}

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

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

.service-info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

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

.what-to-prepare {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

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

.prepare-content h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.prepare-content > p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.prepare-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prepare-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.prepare-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.legal-page {
    padding: 5rem 1.5rem;
}

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

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

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

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

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

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .hero-content-offset {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .hero-text-block {
        flex: 1;
    }

    .hero-image-overlap {
        flex: 1;
    }

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

    .intro-wrapper {
        flex-direction: row;
        gap: 3rem;
    }

    .intro-column-small {
        flex: 0 0 150px;
    }

    .intro-column-large {
        flex: 1;
    }

    .cards-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .card-offset-1 {
        margin-top: 2rem;
    }

    .card-offset-3 {
        margin-top: 3rem;
    }

    .card-offset-5 {
        margin-top: 1.5rem;
    }

    .process-layout-irregular {
        flex-direction: row;
        align-items: center;
    }

    .process-text-block {
        flex: 1;
    }

    .process-image-float {
        flex: 0 0 45%;
    }

    .testimonials-layout {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .testimonial {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonial-pos-1 {
        margin-top: 0;
    }

    .testimonial-pos-2 {
        margin-top: 3rem;
    }

    .testimonial-pos-3 {
        margin-top: 1.5rem;
        flex: 0 0 100%;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-image-left {
        flex: 0 0 45%;
    }

    .story-text-right {
        flex: 1;
    }

    .values-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .value-pos-1 {
        margin-top: 0;
    }

    .value-pos-2 {
        margin-top: 2rem;
    }

    .value-pos-3 {
        margin-top: 1rem;
    }

    .value-pos-4 {
        margin-top: 3rem;
    }

    .team-grid {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .team-member {
        flex: 0 0 calc(33.333% - 2rem);
    }

    .philosophy-layout {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-image {
        flex: 0 0 45%;
    }

    .service-detail-layout {
        flex-direction: row;
        align-items: center;
    }

    .service-visual {
        flex: 0 0 50%;
    }

    .service-info {
        flex: 1;
    }

    .service-layout-2 {
        flex-direction: row-reverse;
    }

    .service-layout-4 {
        flex-direction: row-reverse;
    }

    .additional-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-layout-offset {
        flex-direction: row;
    }

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

    .contact-visual {
        flex: 0 0 45%;
    }

    .location-info {
        flex-direction: row;
    }

    .location-text {
        flex: 1;
    }

    .location-map {
        flex: 0 0 45%;
    }

    .thanks-container {
        flex-direction: row;
    }

    .thanks-content {
        flex: 1;
        text-align: left;
    }

    .thanks-icon {
        text-align: left;
    }

    .thanks-icon svg {
        margin: 0;
    }

    .thanks-visual {
        flex: 0 0 40%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .prepare-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .prepare-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .trust-content {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 0 0 30%;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .cards-grid-asymmetric {
        gap: 2.5rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.7rem);
    }

    .card-offset-2 {
        margin-top: 4rem;
    }

    .card-offset-4 {
        margin-top: 2.5rem;
    }

    .testimonials-layout {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .testimonial-pos-3 {
        flex: 1;
    }

    .values-grid-offset {
        gap: 2.5rem;
    }

    .value-card {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .additional-grid {
        gap: 2.5rem;
    }

    .prepare-grid {
        gap: 2.5rem;
    }
}