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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

main {
    min-height: 70vh;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #34495e;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,62,80,0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(-3deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.2);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-block {
    padding: 6rem 2rem;
    background: #ffffff;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.intro-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-card {
    flex: 0.8;
    transform: translateY(-40px) rotate(2deg);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
}

.intro-image-card img {
    width: 100%;
    display: block;
}

.services-asymmetric {
    padding: 7rem 2rem;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

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

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

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

.service-large {
    flex: 1 1 calc(60% - 2rem);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(48% - 2rem);
    min-width: 350px;
}

.service-small {
    flex: 1 1 calc(31% - 2rem);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    flex-grow: 1;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.expertise-diagonal {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

.expertise-content-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.expertise-text {
    flex: 1.2;
}

.expertise-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.expertise-image-float {
    flex: 1;
    transform: translateY(30px) rotate(-2deg);
    box-shadow: -15px 15px 40px rgba(0,0,0,0.12);
}

.expertise-image-float img {
    width: 100%;
    display: block;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-elements {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.trust-item p {
    color: #ecf0f1;
    line-height: 1.7;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    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;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #c0392b;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.about-header-asymmetric {
    max-width: 800px;
    margin-left: 10%;
}

.about-header-asymmetric h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-layout-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-text-wide {
    flex: 1.3;
}

.story-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.story-image-overlap {
    flex: 1;
    transform: translateY(50px) rotate(3deg);
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.story-image-overlap img {
    width: 100%;
    display: block;
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-irregular-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-primary {
    flex: 1 1 100%;
}

.value-secondary {
    flex: 1 1 calc(55% - 1rem);
    min-width: 300px;
    transform: rotate(-1deg);
}

.value-tertiary {
    flex: 1 1 calc(45% - 1rem);
    min-width: 280px;
    transform: rotate(1deg);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-image-block {
    flex: 1;
    transform: rotate(-2deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.15);
}

.team-image-block img {
    width: 100%;
    display: block;
}

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

.team-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.production-info {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.production-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.production-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.production-text {
    flex: 1;
}

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

.production-image {
    flex: 0.9;
    transform: translateY(-30px) rotate(2deg);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
}

.production-image img {
    width: 100%;
    display: block;
}

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-detail-layout {
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.format-list {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #555;
}

.format-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-pricing-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ecf0f1;
    border-left: 4px solid #3498db;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.btn-service-select {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.contact-hero h1 {
    font-size: 3rem;
}

.contact-intro {
    font-size: 1.2rem;
}

.contact-layout-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

.contact-info-block {
    max-width: 600px;
    margin: 0 auto 0 10%;
    position: relative;
    z-index: 10;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

.contact-image-offset {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 35%;
    max-width: 450px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.contact-image-offset img {
    width: 100%;
    display: block;
}

.directions-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.directions-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.directions-text p {
    color: #666;
    line-height: 1.8;
}

.additional-info {
    padding: 5rem 2rem;
    background: #ffffff;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.info-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    text-align: center;
}

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

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

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-contact-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

.last-updated {
    color: #95a5a6;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

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

.legal-content a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #666;
}

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

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 2rem;
    }

    .intro-split,
    .expertise-content-overlap,
    .team-layout,
    .production-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .intro-text-narrow {
        padding-left: 0;
    }

    .intro-image-card,
    .story-image-overlap,
    .expertise-image-float,
    .team-image-block,
    .production-image {
        transform: none;
    }

    .contact-image-offset {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        max-width: 100%;
        margin-top: 3rem;
    }

    .form-container {
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

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

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

    .value-secondary,
    .value-tertiary {
        transform: none;
    }

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

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