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

:root {
    --primary-color: #7c2f4c;
    --secondary-color: #d4a574;
    --accent-color: #3d5a3f;
    --text-dark: #2c1810;
    --text-light: #6b5447;
    --bg-light: #faf7f4;
    --bg-cream: #f4ede5;
    --white: #ffffff;
    --border-color: #e5d5c8;
}

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

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

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e6b888;
}

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

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

.nav-asymmetric {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    background: var(--bg-cream);
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 40px 20px;
    position: relative;
}

.hero-text-block {
    padding: 40px 20px;
    background: var(--bg-cream);
    margin-left: 0;
    margin-right: 0;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.hero-image-offset {
    margin-top: -60px;
    margin-left: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.intro-creative {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    gap: 40px;
    background: var(--white);
}

.intro-left {
    max-width: 600px;
}

.intro-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-right-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.intro-right-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: var(--white);
}

.card-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 15px;
}

.value-blocks {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background: var(--bg-light);
    gap: 30px;
}

.value-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.value-offset-2 {
    margin-left: 0;
}

.value-offset-3 {
    margin-left: 0;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-asymmetric {
    padding: 80px 20px;
    background: var(--white);
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-left p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-pos-1,
.service-pos-2,
.service-pos-3,
.service-pos-4,
.service-pos-5 {
    margin-left: 0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.experience-story {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    background: var(--bg-light);
    gap: 40px;
}

.story-text-large {
    max-width: 800px;
}

.story-text-large h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text-large p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-stack {
    position: relative;
    height: 400px;
}

.stack-img-1,
.stack-img-2 {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stack-img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 250px;
    object-fit: cover;
}

.stack-img-2 {
    bottom: 0;
    right: 0;
    width: 70%;
    height: 250px;
    object-fit: cover;
}

.testimonials-offset {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-center {
    margin-left: 0;
}

.testimonial-right {
    margin-left: 0;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: bold;
}

.regions-explore {
    padding: 80px 20px;
    background: var(--bg-light);
}

.regions-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.regions-list-creative {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.region-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.region-item h3 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.region-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.booking-form-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.final-cta-creative {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-content-asymmetric h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content-asymmetric p {
    font-size: 18px;
    color: var(--bg-cream);
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: 60px 20px 20px;
}

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

.footer-block h3,
.footer-block h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bg-cream);
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block a {
    color: var(--bg-cream);
    font-size: 14px;
}

.footer-block a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--bg-cream);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-cream);
}

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

.page-hero-offset {
    padding: 60px 20px 40px;
    background: var(--bg-cream);
}

.page-hero-offset h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-story,
.values-section,
.team-section,
.partners-section,
.why-us-section,
.cta-about {
    padding: 60px 20px;
}

.story-content-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-left {
    max-width: 700px;
}

.story-left h2,
.values-section h2,
.team-section h2,
.partners-section h2,
.why-us-section h2,
.cta-about h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-left p,
.team-content p,
.partners-intro,
.cta-about p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.story-right-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.story-right-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section {
    background: var(--bg-light);
}

.values-grid-creative {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-box {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-box h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.value-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.partners-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
}

.why-us-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

.why-us-list li {
    margin-bottom: 10px;
}

.cta-about {
    background: var(--bg-cream);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-reverse {
    flex-direction: column;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-includes {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-pricing-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: bold;
}

.price-value {
    font-size: 30px;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-section {
    padding: 60px 20px;
}

.contact-content-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-block {
    max-width: 600px;
}

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.contact-map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px;
    color: var(--white);
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-alternative {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-cream);
}

.alternative-content {
    max-width: 700px;
    margin: 0 auto;
}

.alternative-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.alternative-content p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.thanks-contact {
    font-size: 15px;
    color: var(--text-light);
}

.legal-page {
    padding: 20px;
}

.legal-header {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 40px 20px 20px;
}

.legal-header h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .hero-offset {
        flex-direction: row;
        align-items: flex-start;
        padding: 60px 40px;
    }

    .hero-text-block {
        margin-right: -80px;
        margin-top: 60px;
        z-index: 2;
    }

    .hero-image-offset {
        flex: 1;
        margin-top: 0;
        margin-left: 0;
    }

    .hero-image-offset img {
        height: 450px;
    }

    .intro-creative {
        flex-direction: row;
        align-items: center;
        padding: 100px 40px;
    }

    .intro-right-card {
        flex: 1;
    }

    .value-blocks {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 80px 40px;
    }

    .value-item {
        flex: 1;
        min-width: 280px;
    }

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

    .value-offset-2 {
        margin-left: 40px;
        margin-top: 40px;
    }

    .value-offset-3 {
        margin-left: 80px;
        margin-top: -20px;
    }

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

    .service-card {
        flex: 1;
        min-width: 320px;
        max-width: calc(50% - 20px);
    }

    .service-pos-1 {
        margin-left: 0;
    }

    .service-pos-2 {
        margin-left: 0;
        margin-top: 40px;
    }

    .service-pos-3 {
        margin-left: 60px;
        margin-top: -20px;
    }

    .service-pos-4 {
        margin-left: 0;
    }

    .service-pos-5 {
        margin-left: 0;
        margin-top: 40px;
    }

    .experience-story {
        flex-direction: row;
        align-items: flex-start;
        padding: 100px 40px;
    }

    .story-image-stack {
        flex: 1;
    }

    .testimonial-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 280px;
    }

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

    .testimonial-center {
        margin-left: 20px;
        margin-top: 40px;
    }

    .testimonial-right {
        margin-left: 40px;
        margin-top: -20px;
    }

    .regions-list-creative {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .region-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

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

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

    .footer-block {
        flex: 1;
        min-width: 200px;
    }

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

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

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

    .value-box {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .partners-benefits {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

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

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

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

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

    .contact-content-asymmetric {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-map-placeholder {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

    .nav-links {
        gap: 40px;
    }

    .service-card {
        max-width: calc(33.333% - 27px);
    }
}