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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #7f8c8d;
    --border-color: #dfe6e9;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #ffeeba;
}

.header-asymmetric {
    position: relative;
}

.nav-floating {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background: var(--white);
    box-shadow: var(--shadow);
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-text-block {
    position: relative;
    z-index: 10;
    max-width: 520px;
    margin-right: auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 35px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 60%;
    height: 80%;
    background: var(--light-bg);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    position: relative;
}

.intro-card {
    max-width: 580px;
    padding: 50px;
    background: var(--light-bg);
    margin-left: 10%;
}

.intro-card.left-offset {
    position: relative;
    left: -80px;
}

.intro-card h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.intro-image {
    width: 40%;
    background: var(--light-bg);
}

.intro-image.right-float {
    position: relative;
    right: -60px;
}

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

.values-overlap {
    padding: 120px 5%;
    position: relative;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-block {
    width: 320px;
    padding: 45px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.value-block.block-1 {
    transform: translateY(-30px);
}

.value-block.block-2 {
    transform: translateY(30px);
}

.value-block.block-3 {
    transform: translateY(-15px);
}

.value-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.value-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.services-creative {
    padding: 100px 5%;
    background: var(--light-bg);
}

.services-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.services-header.offset-right {
    margin-left: auto;
    margin-right: 10%;
}

.services-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: var(--gray);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card.card-large {
    width: calc(50% - 15px);
}

.service-card.card-medium {
    width: calc(33.333% - 20px);
}

.service-card.card-small {
    width: calc(33.333% - 20px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 240px;
    background: var(--light-bg);
}

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

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 15px;
}

.form-wrapper {
    max-width: 550px;
    margin: 80px auto 0;
    padding: 50px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-wrapper.offset-left {
    margin-left: 8%;
    margin-right: auto;
}

.form-wrapper h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 100px 5%;
    background: var(--primary-color);
    color: var(--white);
}

.trust-content.staggered {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
    position: relative;
}

.trust-stat:nth-child(1) {
    transform: translateY(-20px);
}

.trust-stat:nth-child(2) {
    transform: translateY(20px);
}

.trust-stat:nth-child(3) {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-overlap {
    padding: 120px 5%;
    text-align: center;
}

.testimonials-overlap h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 70px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 340px;
    padding: 40px;
    background: var(--light-bg);
    position: relative;
}

.testimonial-card.card-offset-1 {
    transform: translateY(-25px);
}

.testimonial-card.card-offset-2 {
    transform: translateY(25px);
}

.testimonial-card.card-offset-3 {
    transform: translateY(-12px);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-card .author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-creative {
    padding: 100px 5%;
    background: var(--light-bg);
}

.cta-block.diagonal {
    max-width: 700px;
    padding: 70px;
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(-1deg);
    margin: 0 auto;
}

.cta-block.diagonal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block.diagonal p {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p,
.footer-col ul {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 5%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-hero {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-hero.offset-layout {
    position: relative;
}

.about-text-primary {
    max-width: 600px;
    padding: 60px;
    background: var(--light-bg);
    position: relative;
    z-index: 10;
}

.about-text-primary h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.about-text-primary p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

.about-image-float {
    width: 45%;
    height: 400px;
    background: var(--light-bg);
}

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

.story-section {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-section.diagonal-flow {
    transform: rotate(-0.5deg);
    background: var(--light-bg);
}

.story-block {
    max-width: 550px;
}

.story-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.story-image {
    width: 45%;
    height: 350px;
    background: var(--white);
}

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

.values-detailed {
    padding: 120px 5%;
    text-align: center;
}

.values-detailed h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 70px;
    font-weight: 700;
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    width: 300px;
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: left;
}

.value-item.item-1 {
    transform: translateY(-30px);
}

.value-item.item-2 {
    transform: translateY(30px);
}

.value-item.item-3 {
    transform: translateY(-15px);
}

.value-item.item-4 {
    transform: translateY(15px);
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

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

.team-asymmetric {
    padding: 100px 5%;
    background: var(--light-bg);
}

.team-intro {
    max-width: 650px;
    margin-bottom: 50px;
}

.team-intro.offset-right {
    margin-left: auto;
    margin-right: 8%;
}

.team-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: var(--gray);
}

.team-content {
    max-width: 700px;
    margin-left: 5%;
}

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

.cta-about {
    padding: 100px 5%;
}

.cta-content.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
}

.services-hero {
    padding: 80px 5%;
    background: var(--light-bg);
}

.services-hero.asymmetric-header {
    position: relative;
}

.services-title-block {
    max-width: 700px;
    margin-left: auto;
    margin-right: 8%;
    padding: 40px;
}

.services-title-block h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.services-title-block p {
    font-size: 18px;
    color: var(--gray);
}

.service-detail-section {
    padding: 80px 5%;
}

.service-detail-section.reverse-offset {
    background: var(--light-bg);
}

.service-detail {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-visual {
    width: 45%;
    height: 400px;
    background: var(--light-bg);
    flex-shrink: 0;
}

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.service-includes {
    margin: 30px 0;
    padding: 30px;
    background: var(--light-bg);
}

.service-includes h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    font-size: 16px;
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-display {
    display: block;
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 25px;
}

.services-cta-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

.cta-wrapper.diagonal-block {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    transform: rotate(-1deg);
}

.cta-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-hero {
    padding: 80px 5%;
    background: var(--light-bg);
}

.contact-hero.offset-layout {
    position: relative;
}

.contact-intro {
    max-width: 600px;
    margin-left: 8%;
}

.contact-intro h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-intro p {
    font-size: 18px;
    color: var(--gray);
}

.contact-main {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-main.asymmetric-layout {
    position: relative;
}

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

.contact-info-block.left-position {
    position: relative;
    left: -40px;
}

.contact-info-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 40px;
}

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

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

.email-display {
    font-weight: 600;
    color: var(--text-color);
}

.contact-visual {
    width: 45%;
    height: 450px;
    background: var(--light-bg);
}

.contact-visual.right-float {
    position: relative;
    right: -40px;
}

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

.contact-additional {
    padding: 100px 5%;
    background: var(--light-bg);
}

.contact-additional.diagonal-section {
    transform: rotate(-0.5deg);
}

.contact-additional h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.additional-info-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    width: 320px;
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

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

.thanks-section.centered-asymmetric {
    position: relative;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    padding: 70px;
    background: var(--light-bg);
    transform: rotate(-0.5deg);
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

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

#service-confirmation {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 20px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 100px 5%;
}

.next-steps.offset-section {
    background: var(--light-bg);
}

.next-steps h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    width: 320px;
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.step-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.legal-content {
    padding: 100px 5%;
    background: var(--light-bg);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.legal-wrapper h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.legal-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-wrapper h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 700;
}

.legal-wrapper h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-weight: 700;
}

.legal-wrapper p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 15px 0 15px 30px;
    line-height: 1.7;
}

.legal-wrapper li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.legal-wrapper strong {
    font-weight: 700;
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-bg);
    font-weight: 700;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-color);
}

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

    .hero-text-block {
        max-width: 100%;
        margin-right: 0;
    }

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

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

    .intro-card.left-offset {
        left: 0;
        margin-left: 0;
    }

    .intro-image {
        width: 100%;
    }

    .intro-image.right-float {
        right: 0;
    }

    .service-card.card-large,
    .service-card.card-medium,
    .service-card.card-small {
        width: 100%;
    }

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

    .about-image-float {
        width: 100%;
    }

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

    .story-image {
        width: 100%;
    }

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

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

    .service-visual {
        width: 100%;
    }

    .contact-main {
        flex-direction: column;
    }

    .contact-info-block.left-position {
        left: 0;
    }

    .contact-visual {
        width: 100%;
    }

    .contact-visual.right-float {
        right: 0;
    }
}

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

    .hero-text-block h1 {
        font-size: 36px;
    }

    .intro-card h2,
    .services-header h2,
    .testimonials-overlap h2 {
        font-size: 32px;
    }

    .values-overlap {
        flex-direction: column;
        align-items: center;
    }

    .value-block {
        width: 100%;
        max-width: 400px;
    }

    .value-block.block-1,
    .value-block.block-2,
    .value-block.block-3 {
        transform: translateY(0);
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 450px;
    }

    .testimonial-card.card-offset-1,
    .testimonial-card.card-offset-2,
    .testimonial-card.card-offset-3 {
        transform: translateY(0);
    }

    .footer-content {
        flex-direction: column;
    }

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

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

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text-block {
        padding: 30px;
    }

    .hero-text-block h1 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .legal-wrapper {
        padding: 30px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

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