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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

.header-asymmetric {
    position: relative;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    position: absolute;
    top: 0.5rem;
    right: 5%;
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    position: relative;
}

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

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

.hero-offset {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 0;
    overflow: hidden;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-color: #ecf0f1;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 8%;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.hero-text-overlay p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    padding: 8rem 8%;
    background-color: #fafbfc;
}

.intro-column-left {
    flex: 1.2;
    padding-top: 2rem;
}

.intro-column-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-column-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-column-right {
    flex: 1;
    margin-top: -4rem;
    background-color: #d5dce0;
}

.intro-column-right img {
    width: 100%;
    height: 450px;
}

.services-preview-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 6rem 5%;
    background-color: #ffffff;
}

.service-card-large {
    flex: 1 1 calc(60% - 1rem);
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-large img {
    width: 100%;
    height: 350px;
    background-color: #e1e8ed;
}

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0.5rem 1rem;
    background-color: #e8f5e9;
    border-radius: 5px;
}

.service-card-small {
    flex: 1 1 calc(40% - 1rem);
    padding: 2.5rem;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-small h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card-small p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-card-small .price {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.process-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 7rem 6%;
    background-color: #ecf0f1;
}

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

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

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

.process-image-left {
    flex: 1;
    background-color: #bdc3c7;
}

.process-image-left img {
    width: 100%;
    height: 450px;
}

.form-section-overlap {
    position: relative;
    display: flex;
    align-items: stretch;
    padding: 5rem 5%;
    background-color: #ffffff;
    gap: 3rem;
}

.form-container-asymmetric {
    flex: 1.3;
    padding: 3rem;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.form-container-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d7de;
    border-radius: 5px;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.form-sidebar-image {
    flex: 0.7;
    background-color: #d5dce0;
    margin-top: -3rem;
}

.form-sidebar-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
    padding: 5rem 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-block {
    flex: 1;
}

.trust-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.trust-block p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.page-hero-minimal {
    padding: 6rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero-minimal p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid-asymmetric {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item-large {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: #fafbfc;
    padding: 3rem;
}

.service-image-wrap {
    flex: 1;
    background-color: #d5dce0;
}

.service-image-wrap img {
    width: 100%;
    height: 400px;
}

.service-content {
    flex: 1;
    padding-top: 1rem;
}

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

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 5px;
    margin-top: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.service-item-offset {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-left: 10%;
}

.service-item-offset .service-image-wrap {
    flex: 0.8;
}

.service-item-offset .service-image-wrap img {
    height: 350px;
}

.service-item-stacked {
    padding: 3rem;
    background-color: #ecf0f1;
    max-width: 900px;
    margin-right: auto;
}

.service-item-stacked h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-split-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-text {
    flex: 1.5;
}

.service-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.service-pricing-box {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-item-card {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: 5%;
}

.service-item-card:nth-child(even) {
    margin-left: 5%;
    margin-right: auto;
}

.service-item-card img {
    width: 100%;
    height: 280px;
    background-color: #d5dce0;
}

.service-card-body {
    padding: 2rem;
}

.service-card-body h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card-body p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-services-bottom {
    padding: 5rem 8%;
    background-color: #3498db;
    text-align: center;
}

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

.cta-content-asymmetric h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #3498db;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-hero-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 6%;
    align-items: center;
    background-color: #fafbfc;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.about-text-block p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-image-block {
    flex: 1;
    background-color: #d5dce0;
}

.about-image-block img {
    width: 100%;
    height: 400px;
}

.story-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 8%;
    background-color: #ffffff;
}

.story-column-wide {
    flex: 1.8;
}

.story-column-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-column-wide p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.story-column-narrow {
    flex: 1;
}

.stats-box {
    background-color: #34495e;
    padding: 3rem 2rem;
    color: #ffffff;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 5rem 6%;
    background-color: #ecf0f1;
}

.value-block-left,
.value-block-right {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.value-block-left img,
.value-block-right img {
    flex: 1;
    width: 100%;
    height: 320px;
    background-color: #bdc3c7;
}

.value-content {
    flex: 1.3;
}

.value-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-asymmetric {
    padding: 6rem 8%;
    background-color: #ffffff;
}

.team-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.team-member-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-member-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.approach-section {
    padding: 6rem 8%;
    background-color: #fafbfc;
}

.approach-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.approach-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-hero {
    padding: 5rem 8%;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.contact-layout-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 6%;
    background-color: #ffffff;
    align-items: flex-start;
}

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

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

.info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.email-display {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    color: #34495e;
}

.contact-image-block {
    flex: 1.2;
    margin-top: -3rem;
    background-color: #d5dce0;
}

.contact-image-block img {
    width: 100%;
    height: 450px;
}

.location-details {
    padding: 5rem 8%;
    background-color: #ecf0f1;
}

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.location-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-method {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.location-method p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.cta-box-offset {
    max-width: 650px;
    margin-left: auto;
    margin-right: 10%;
    padding: 3rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 8px;
}

.cta-box-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-section {
    padding: 6rem 8%;
    background-color: #f8f9fa;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-centered {
    max-width: 700px;
    text-align: center;
}

.thanks-content-centered h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.service-confirmation {
    margin-bottom: 2.5rem;
}

.service-selected {
    font-size: 1.05rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    color: #27ae60;
    border-radius: 8px;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #95a5a6;
    color: #ffffff;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.next-steps {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.steps-container h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 8%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer-asymmetric {
    padding: 4rem 8%;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column-main h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-column-main p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

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

.footer-column-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column-links a {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-column-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.6;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-text-overlay h1 {
        font-size: 2.3rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-column-right {
        margin-top: 0;
    }

    .services-preview-offset {
        flex-direction: column;
    }

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

    .process-split {
        flex-direction: column;
    }

    .form-section-overlap {
        flex-direction: column;
    }

    .form-sidebar-image {
        margin-top: 0;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

    .service-item-large {
        flex-direction: column;
    }

    .service-item-offset {
        flex-direction: column;
        margin-left: 0;
    }

    .about-hero-offset {
        flex-direction: column;
    }

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

    .value-block-left,
    .value-block-right {
        flex-direction: column;
    }

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

    .contact-image-block {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-text-overlay {
        margin-left: 5%;
        padding: 2rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.9rem;
    }

    .intro-column-left h2 {
        font-size: 2rem;
    }

    .page-hero-minimal h1 {
        font-size: 2.2rem;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
    }

    .location-grid {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}