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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f5f0;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-weight: 500;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

.hero-content-offset {
    width: 45%;
    padding-right: 3rem;
    position: relative;
    z-index: 10;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 52%;
    height: 75%;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.intro-offset {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
}

.intro-block-left {
    width: 55%;
    padding-left: 8%;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.intro-block-right {
    width: 45%;
    padding-top: 3rem;
}

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

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

.section-header-right {
    text-align: right;
    margin-bottom: 4rem;
    padding-right: 10%;
}

.section-header-right h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.service-card {
    background-color: white;
    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);
}

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

.service-card.medium {
    width: calc(40% - 1rem);
}

.service-card.small {
    width: calc(35% - 1rem);
    margin-left: 10%;
}

.service-card.medium-alt {
    width: calc(45% - 1rem);
}

.service-card.small-alt {
    width: calc(40% - 1rem);
}

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

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

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

.service-content {
    padding: 2rem;
}

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

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

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

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.form-section-diagonal {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 15%;
    background-color: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-container-offset > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    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(--accent-color);
}

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

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

.testimonials-stagger {
    padding: 7rem 5%;
    background-color: var(--bg-white);
}

.testimonials-stagger h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    max-width: 700px;
}

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

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

.testimonial-card.offset-center {
    margin-left: 20%;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

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

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

.footer-col-large {
    width: 35%;
}

.footer-col-medium {
    width: 25%;
}

.footer-col-small {
    width: 20%;
}

.footer-main h3,
.footer-main h4 {
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-main h3 {
    font-size: 1.5rem;
}

.footer-main h4 {
    font-size: 1.1rem;
}

.footer-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-email {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

.about-hero-split {
    margin-top: 80px;
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-hero-text {
    width: 45%;
}

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

.about-hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    width: 55%;
    height: 500px;
    background-color: var(--bg-light);
}

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

.about-content-irregular {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.content-block-main {
    max-width: 800px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.content-block-main h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block-main p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.content-block-secondary {
    max-width: 600px;
    margin-left: auto;
    margin-right: 10%;
    padding: 2.5rem;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-block-secondary h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.values-offset {
    padding: 7rem 5%;
}

.values-offset h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.value-item.large {
    width: calc(55% - 1rem);
}

.value-item.medium {
    width: calc(45% - 1rem);
}

.value-item.small {
    width: calc(35% - 1rem);
}

.value-item.medium-alt {
    width: calc(65% - 1rem);
}

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

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

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

.team-intro-offset {
    margin-left: 20%;
    margin-bottom: 3rem;
}

.team-intro-offset h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.team-content {
    max-width: 800px;
    margin-right: 10%;
    margin-left: auto;
}

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

.cta-section-diagonal {
    padding: 7rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta-content-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 15%;
    text-align: center;
    color: white;
}

.cta-content-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.services-header-offset {
    margin-top: 80px;
    padding: 6rem 5% 4rem;
    text-align: right;
    padding-right: 15%;
}

.services-header-offset h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.services-detail-irregular {
    padding: 4rem 5%;
}

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

.service-detail.large-left .service-detail-image {
    width: 50%;
}

.service-detail.large-left .service-detail-content {
    width: 50%;
}

.service-detail.medium-right {
    flex-direction: row-reverse;
}

.service-detail.medium-right .service-detail-image {
    width: 45%;
}

.service-detail.medium-right .service-detail-content {
    width: 55%;
}

.service-detail.small-left .service-detail-image {
    width: 40%;
}

.service-detail.small-left .service-detail-content {
    width: 60%;
}

.service-detail.medium-center {
    flex-direction: row-reverse;
    padding-left: 5%;
}

.service-detail.medium-center .service-detail-image {
    width: 48%;
}

.service-detail.medium-center .service-detail-content {
    width: 52%;
}

.service-detail.large-right {
    flex-direction: row-reverse;
}

.service-detail.large-right .service-detail-image {
    width: 52%;
}

.service-detail.large-right .service-detail-content {
    width: 48%;
}

.service-detail-image {
    height: 450px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

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

.service-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.contact-header-asymmetric {
    margin-top: 80px;
    padding: 6rem 5% 4rem;
    padding-left: 15%;
}

.contact-header-asymmetric h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header-asymmetric p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-layout-irregular {
    padding: 4rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    position: relative;
}

.contact-info-offset {
    width: 35%;
    padding-left: 5%;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

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

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

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

.contact-image-overlap {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 40%;
    height: 400px;
    background-color: var(--bg-light);
}

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

.contact-additional {
    width: 100%;
    margin-top: 25rem;
    padding-left: 15%;
    padding-right: 15%;
}

.contact-additional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

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

.map-section {
    padding: 0 5% 5rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

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

.thanks-section-centered {
    margin-top: 80px;
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.thanks-content {
    width: 50%;
}

.thanks-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.thanks-next-steps ol li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.thanks-image {
    width: 50%;
    height: 500px;
    background-color: var(--bg-light);
}

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

.legal-content {
    margin-top: 80px;
    padding: 5rem 10%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.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 {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-manage-cookies {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-manage-cookies:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }

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

    .intro-offset {
        flex-direction: column;
    }

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-left: 0;
    }

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

    .service-detail.medium-right,
    .service-detail.medium-center,
    .service-detail.large-right {
        flex-direction: column;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-layout-irregular {
        flex-direction: column;
    }

    .contact-info-offset,
    .contact-image-overlap {
        width: 100%;
        position: relative;
    }

    .thanks-section-centered {
        flex-direction: column;
    }

    .thanks-content,
    .thanks-image {
        width: 100%;
    }
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .footer-col-large,
    .footer-col-medium,
    .footer-col-small {
        width: 100%;
    }

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