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

:root {
    --primary-color: #2d3142;
    --secondary-color: #bfc0c0;
    --accent-color: #ef8354;
    --light-color: #f7f7f2;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --border-radius: 2px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 49, 66, 0.98);
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.nav-menu li a {
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

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

.hero-offset-content {
    max-width: 600px;
    margin-left: 8%;
    z-index: 10;
    position: relative;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hero-subtitle-block {
    max-width: 450px;
    margin-left: 3rem;
    padding: 1.5rem;
    background-color: rgba(239, 131, 84, 0.1);
    border-left: 3px solid var(--accent-color);
}

.hero-subtitle-block p {
    font-size: 1.15rem;
    margin: 0;
}

.hero-image-block {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 35%;
    max-width: 500px;
    z-index: 1;
}

.hero-image-block img {
    width: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-floating-badge {
    position: absolute;
    bottom: 10%;
    right: 35%;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(239, 131, 84, 0.3);
    z-index: 20;
}

.cta-floating-badge:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 6rem 8%;
    background-color: white;
    position: relative;
}

.intro-narrow {
    flex: 1;
    max-width: 550px;
    margin-left: 5%;
}

.intro-narrow h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-visual-accent {
    flex: 0 0 400px;
    margin-top: -5rem;
    position: relative;
}

.intro-visual-accent img {
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.12);
}

.story-block {
    display: flex;
    padding: 5rem 8%;
    background-color: var(--light-color);
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.story-text-layer {
    flex: 1;
    max-width: 600px;
    padding-top: 3rem;
}

.story-text-layer h3 {
    color: var(--primary-color);
    margin-bottom: 1.8rem;
}

.story-image-overlap {
    flex: 0 0 350px;
    margin-top: -8rem;
    position: relative;
}

.story-image-overlap img {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.services-asymmetric {
    padding: 6rem 8%;
    background-color: white;
}

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

.section-header-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background-color: var(--light-color);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 8%;
}

.card-offset-3 {
    margin-left: 3%;
}

.card-offset-4 {
    margin-left: 12%;
}

.card-offset-5 {
    margin-left: 5%;
}

.service-visual {
    flex: 0 0 280px;
}

.service-visual img {
    width: 100%;
}

.service-info {
    flex: 1;
}

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

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

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.btn-service:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.testimonial-layer {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 8%;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-offset {
    flex: 1;
    margin-left: 8%;
}

.testimonial-offset blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
}

.testimonial-offset cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.testimonial-visual {
    flex: 0 0 300px;
}

.testimonial-visual img {
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.philosophy-split {
    display: flex;
    gap: 5rem;
    padding: 6rem 8%;
    background-color: var(--light-color);
    align-items: center;
}

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

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

.philosophy-image {
    flex: 0 0 400px;
}

.philosophy-image img {
    box-shadow: 20px -20px 50px rgba(0, 0, 0, 0.12);
}

.form-section-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 8%;
    background-color: white;
    align-items: flex-start;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.form-container-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

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

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.form-visual-accent {
    flex: 0 0 350px;
    margin-top: 5rem;
}

.form-visual-accent img {
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-creative {
    padding: 6rem 8%;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-content-block {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content-block p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: white;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-large:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

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

.footer-brand h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-links h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-links ul li a {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin: 0;
}

.page-hero-offset {
    padding: 10rem 8% 4rem;
    background-color: var(--light-color);
}

.page-hero-content {
    max-width: 700px;
    margin-left: 10%;
}

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

.page-hero-content p {
    font-size: 1.2rem;
}

.services-detail-asymmetric {
    padding: 4rem 8%;
}

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

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

.card-right {
    flex-direction: row-reverse;
    margin-left: 8%;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.price-tag {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 300;
    margin: 1rem 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-detail-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

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

.process-section {
    padding: 5rem 8%;
    background-color: var(--light-color);
    text-align: center;
}

.process-section h2 {
    color: var(--primary-color);
    margin-bottom: 4rem;
}

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

.process-step {
    flex: 0 1 200px;
    text-align: center;
}

.step-1 {
    margin-top: 0;
}

.step-2 {
    margin-top: 3rem;
}

.step-3 {
    margin-top: 1rem;
}

.step-4 {
    margin-top: 4rem;
}

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

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.95rem;
}

.about-hero-split {
    display: flex;
    gap: 5rem;
    padding: 8rem 8% 4rem;
    align-items: center;
    background-color: var(--light-color);
}

.about-hero-image {
    flex: 0 0 400px;
}

.about-hero-image img {
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
}

.about-hero-text {
    flex: 1;
    max-width: 600px;
}

.about-hero-text h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-large {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-story-offset {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    background-color: white;
    align-items: flex-start;
}

.story-block-narrow {
    flex: 1;
    max-width: 700px;
    margin-left: 5%;
}

.story-block-narrow h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-visual-overlap {
    flex: 0 0 350px;
    margin-top: -3rem;
}

.story-visual-overlap img {
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

.values-asymmetric {
    padding: 6rem 8%;
    background-color: var(--light-color);
}

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

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    flex: 0 1 300px;
    padding: 2.5rem;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.value-offset-2 {
    margin-top: 3rem;
}

.value-offset-3 {
    margin-top: 1.5rem;
}

.value-offset-4 {
    margin-top: 4rem;
}

.value-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.credentials-section {
    padding: 5rem 8%;
    background-color: white;
}

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

.credentials-content h3 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.credential-year {
    flex: 0 0 80px;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.credential-detail {
    flex: 1;
    border-left: 2px solid var(--secondary-color);
    padding-left: 2rem;
}

.credential-detail h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credential-detail p {
    color: var(--text-color);
    margin: 0;
}

.approach-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 8%;
    background-color: var(--light-color);
    align-items: center;
}

.approach-text {
    flex: 1;
    max-width: 650px;
}

.approach-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-visual {
    flex: 0 0 380px;
}

.approach-visual img {
    box-shadow: 15px -15px 40px rgba(0, 0, 0, 0.12);
}

.testimonials-about {
    padding: 6rem 8%;
    background-color: white;
}

.testimonials-about h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2.5rem;
    background-color: var(--light-color);
    border-left: 3px solid var(--accent-color);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-offset-1 {
    margin-left: 0;
}

.testimonial-offset-2 {
    margin-left: 8%;
}

.testimonial-offset-3 {
    margin-left: 4%;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--primary-color);
}

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

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content-centered h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.contact-hero-offset {
    padding: 10rem 8% 4rem;
    background-color: var(--light-color);
}

.contact-hero-content {
    max-width: 700px;
    margin-left: 10%;
}

.contact-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
}

.contact-info-asymmetric {
    display: flex;
    gap: 5rem;
    padding: 5rem 8%;
    background-color: white;
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
    max-width: 500px;
    margin-left: 5%;
}

.contact-details-block h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

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

.contact-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-visual-block {
    flex: 0 0 500px;
}

.contact-visual-block img {
    margin-bottom: 2rem;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-left: 3px solid var(--accent-color);
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
}

.faq-section-offset {
    padding: 5rem 8%;
    background-color: var(--light-color);
}

.faq-section-offset h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-left: 5%;
}

.faq-list {
    max-width: 900px;
    margin-left: 5%;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    margin: 0;
}

.faq-item a {
    color: var(--accent-color);
}

.map-section {
    padding: 0;
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 49, 66, 0.9);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
}

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

.thanks-hero {
    min-height: 80vh;
    display: flex;
    gap: 5rem;
    padding: 10rem 8% 5rem;
    background-color: var(--light-color);
    align-items: center;
}

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

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

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

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

.service-selected {
    margin: 2rem 0;
}

.service-highlight {
    padding: 1.5rem;
    background-color: rgba(239, 131, 84, 0.1);
    border-left: 3px solid var(--accent-color);
    font-size: 1.1rem;
}

.service-highlight strong {
    color: var(--accent-color);
}

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

.thanks-next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.step-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-item p {
    flex: 1;
    margin: 0;
    padding-top: 0.8rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

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

.thanks-visual {
    flex: 0 0 350px;
}

.thanks-visual img {
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
}

.legal-page {
    padding: 8rem 8% 4rem;
    background-color: white;
}

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

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

.last-updated {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

@media (max-width: 1200px) {
    .hero-title-large {
        font-size: 3.5rem;
    }

    .hero-image-block {
        width: 40%;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-floating {
        width: 90%;
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 1.5rem 3rem;
    }

    .hero-offset-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 2.8rem;
    }

    .hero-subtitle-block {
        margin-left: 0;
    }

    .hero-image-block {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 3rem;
    }

    .cta-floating-badge {
        position: static;
        display: inline-block;
        margin-top: 2rem;
    }

    .intro-offset,
    .story-block,
    .philosophy-split,
    .approach-split,
    .about-hero-split,
    .about-story-offset,
    .contact-info-asymmetric,
    .form-section-asymmetric,
    .testimonial-layer,
    .thanks-hero,
    .service-detail-card {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }

    .intro-narrow,
    .story-text-layer,
    .philosophy-content,
    .approach-text,
    .story-block-narrow,
    .contact-details-block,
    .form-container-offset,
    .about-hero-text {
        margin-left: 0;
        max-width: 100%;
    }

    .intro-visual-accent,
    .story-image-overlap,
    .philosophy-image,
    .approach-visual,
    .story-visual-overlap,
    .contact-visual-block,
    .form-visual-accent,
    .testimonial-visual,
    .thanks-visual,
    .about-hero-image,
    .service-detail-image {
        flex: 1;
        margin: 0;
        max-width: 100%;
    }

    .services-asymmetric,
    .values-asymmetric,
    .credentials-section,
    .testimonials-about,
    .process-section,
    .faq-section-offset {
        padding: 3rem 1.5rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-left,
    .card-right {
        margin-left: 0;
    }

    .service-visual {
        flex: 1;
        max-width: 100%;
    }

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

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-top: 0;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3,
    .value-offset-4 {
        margin-top: 0;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-left: 0;
    }

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

    .page-hero-offset,
    .contact-hero-offset {
        padding: 8rem 1.5rem 3rem;
    }

    .page-hero-content,
    .contact-hero-content {
        margin-left: 0;
    }

    .faq-list {
        margin-left: 0;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-page {
        padding: 8rem 1.5rem 3rem;
    }

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

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

    h2 {
        font-size: 1.7rem;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

    .nav-menu {
        width: 85%;
    }

    .cta-content-block h3,
    .cta-content-centered h3 {
        font-size: 1.8rem;
    }

    .btn-cta-large,
    .btn-primary,
    .btn-submit {
        padding: 0.9rem 2rem;
    }
}
