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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fefefe;
}

.nav-asymmetric {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1.2rem 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

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

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ecf0f1;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    background-color: rgba(231, 76, 60, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin: 0 1rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #e74c3c;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 5;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    padding-right: 3rem;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
}

.intro-visual-right {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-staggered {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 7rem 2.5rem;
}

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

.section-header-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

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

.service-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

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

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 0.5rem;
}

.btn-select-service {
    background-color: #34495e;
    color: #fff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.process-section {
    max-width: 1400px;
    margin: 7rem auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.process-text-right {
    flex: 1;
    order: 2;
    padding-left: 3rem;
}

.process-text-right h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.process-text-right p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.link-inline:hover {
    border-bottom-color: #3498db;
}

.process-image-left {
    flex: 1;
    order: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

.process-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section-offset {
    max-width: 900px;
    margin: 7rem auto;
    padding: 4rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: rotate(-0.5deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.form-container {
    transform: rotate(0.5deg);
}

.form-container h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.values-asymmetric {
    max-width: 1400px;
    margin: 7rem auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.values-text {
    flex: 1.2;
}

.values-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.values-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    transform: translateY(2rem);
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-stacked {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding-top: 4rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    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;
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-primary {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    background-color: #7f8c8d;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6c7a7b;
}

.about-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 6rem 2.5rem;
    text-align: center;
}

.about-header-offset {
    max-width: 800px;
    margin: 0 auto;
}

.about-header-offset h1 {
    font-size: 3rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-header-offset p {
    font-size: 1.2rem;
    color: #bdc3c7;
    line-height: 1.8;
}

.about-story {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.story-text-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text-right p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.team-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 4rem 2.5rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-member p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.process-detail {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2.5rem;
}

.process-detail h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-top: 4px solid #3498db;
}

.step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.values-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2.5rem;
}

.values-content {
    background-color: #fff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.values-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-image-offset {
    margin-top: 3rem;
    background-color: #ecf0f1;
    overflow: hidden;
    transform: translateX(3rem);
}

.values-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-about {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2.5rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.service-left .service-content {
    order: 1;
    flex: 1.2;
}

.service-left .service-visual {
    order: 2;
    flex: 1;
}

.service-right .service-content {
    order: 2;
    flex: 1.2;
}

.service-right .service-visual {
    order: 1;
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.service-content ul {
    margin: 1.5rem 0 2rem 1.5rem;
    color: #666;
}

.service-content ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.7;
}

.price-large {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.service-visual {
    background-color: #ecf0f1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pricing-info {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-left: 6px solid #f39c12;
}

.pricing-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.contact-hero {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    padding: 5rem 2.5rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.detail-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.detail-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image-block {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-approach {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-approach p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.contact-approach a {
    color: #3498db;
    text-decoration: underline;
}

.location-context {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.location-context h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-context p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.thanks-hero {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.thanks-content {
    background-color: #fff;
    padding: 4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 4px;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

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

.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2.5rem;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-text-block {
        margin-left: 2%;
    }

    .hero-image-overlap {
        width: 50%;
    }
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

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

    .intro-offset,
    .about-story,
    .process-section,
    .values-asymmetric,
    .contact-content,
    .service-block {
        flex-direction: column;
        gap: 3rem;
    }

    .service-left .service-content,
    .service-right .service-content,
    .service-left .service-visual,
    .service-right .service-visual {
        order: unset;
    }

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

    .process-text-right {
        order: unset;
        padding-left: 0;
    }

    .step {
        flex: 1 1 100%;
    }

    .values-image-offset {
        transform: translateX(0);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .about-header-offset h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .section-header-left h2,
    .intro-narrow h2,
    .process-text-right h2,
    .values-text h2 {
        font-size: 1.8rem;
    }

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