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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 80px;
    margin-top: -100px;
}

.hero-text-block {
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 5;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 150px 120px;
    background-color: #ffffff;
}

.intro-block-left {
    flex: 1;
    padding-left: 100px;
}

.intro-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image-right {
    flex: 1;
    margin-right: -60px;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.services-creative {
    padding: 120px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.section-header-irregular {
    max-width: 700px;
    margin-left: 120px;
    margin-bottom: 80px;
}

.section-header-irregular h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header-irregular p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    background-color: #ffffff;
    width: calc(33.333% - 30px);
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 25px 25px 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    color: #666;
    padding: 0 25px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    padding: 0 25px 20px;
}

.service-select-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-irregular {
    padding: 100px 80px;
    background-color: #2c3e50;
    position: relative;
}

.form-container-overlap {
    max-width: 800px;
    margin-left: auto;
    margin-right: 150px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.form-submit-btn {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.trust-block-offset {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 120px 100px;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding-right: 60px;
}

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.footer-irregular {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #cccccc;
}

.footer-block p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.8;
}

.footer-block a {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 10000;
    display: none;
}

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

.cookie-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #34495e;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

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

.about-intro-block h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro-block p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-irregular {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 100px;
    background-color: #ffffff;
}

.story-image-left {
    flex: 1;
    margin-left: -80px;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #f0f0f0;
}

.story-content-right {
    flex: 1;
    padding-left: 40px;
}

.story-content-right h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.story-content-right p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section-overlap {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.philosophy-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 120px 100px;
    background-color: #ffffff;
}

.team-section-asymmetric h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    margin-left: 80px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.approach-block {
    max-width: 600px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-block.offset-left {
    margin-left: 100px;
}

.approach-block.offset-right {
    margin-left: auto;
    margin-right: 100px;
}

.approach-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.approach-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.values-overlap {
    position: relative;
    padding: 150px 100px;
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 80px;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    background-color: #34495e;
}

.values-text-block {
    flex: 1;
    color: #ffffff;
    padding-right: 60px;
}

.values-text-block h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.values-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.services-hero-irregular {
    padding: 180px 120px 100px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.services-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail-asymmetric {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 100px;
}

.service-detail-item.offset-pattern-1 {
    background-color: #ffffff;
}

.service-detail-item.offset-pattern-2 {
    background-color: #f8f9fa;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin: 25px 0;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #666;
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.services-process-overlap {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
}

.services-process-overlap h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-hero-offset {
    padding: 180px 120px 100px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info-irregular {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    padding: 120px 100px;
    background-color: #ffffff;
}

.contact-block-left {
    flex: 1;
    padding-right: 60px;
}

.contact-block-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-block-left > p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.contact-image-right {
    flex: 1;
}

.contact-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #f0f0f0;
}

.contact-cta-overlap {
    padding: 100px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.thanks-section-centered {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 30px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.step-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding-top: 8px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    background-color: #ffffff;
}

.legal-page-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.legal-page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-page-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .nav-floating {
        right: 30px;
        gap: 30px;
        padding: 15px 30px;
    }

    .hero-asymmetric {
        padding: 80px 40px;
    }

    .hero-content-offset {
        margin-left: 40px;
    }

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

    .intro-offset,
    .about-story-irregular,
    .contact-info-irregular {
        flex-direction: column;
        padding: 80px 60px;
    }

    .intro-block-left {
        padding-left: 0;
    }

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

    .story-image-left {
        margin-left: 0;
    }

    .services-grid-asymmetric {
        justify-content: center;
    }

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

    .service-detail-item {
        flex-direction: column;
        padding: 60px 60px;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .process-step {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        flex-direction: column;
        gap: 20px;
        border-radius: 0;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content-offset {
        margin: 0;
    }

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

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

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 40px;
        transform: none;
    }

    .service-card {
        width: 100%;
    }

    .services-creative,
    .form-section-irregular,
    .trust-block-offset,
    .philosophy-section-overlap,
    .team-section-asymmetric,
    .values-overlap {
        padding: 60px 20px;
    }

    .section-header-irregular {
        margin-left: 0;
    }

    .form-container-overlap {
        margin-right: 0;
        padding: 40px 30px;
    }

    .trust-block-offset {
        flex-direction: column;
        gap: 40px;
    }

    .trust-content {
        padding-right: 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .approach-block.offset-left,
    .approach-block.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .values-overlap {
        flex-direction: column;
    }

    .values-text-block {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 8px 8px 0 0;
    }

    .about-hero-offset,
    .services-hero-irregular,
    .contact-hero-offset {
        padding: 100px 30px 60px;
    }

    .about-intro-block h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .legal-page-content {
        padding: 60px 20px;
    }

    .legal-page-content h1 {
        font-size: 32px;
    }
}