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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6a9f;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ad-disclosure {
    background-color: #fff9e6;
    border-bottom: 1px solid #ffd966;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 80px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-offset {
    max-width: 580px;
    z-index: 2;
    padding-right: 40px;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 38px;
    line-height: 1.6;
}

.hero-image-overlapping {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 48%;
    z-index: 1;
}

.hero-image-overlapping img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.2);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.3);
    transform: translateY(-2px);
}

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

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

.intro-offset {
    padding: 120px 60px 100px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    background-color: var(--bg-white);
    margin-left: 12%;
}

.intro-narrow {
    flex: 1;
    max-width: 520px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-visual-card {
    flex: 1;
    transform: translateY(-60px) rotate(-2deg);
}

.intro-visual-card img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
}

.services-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(165deg, #f0f4f8 0%, #ffffff 100%);
}

.section-header-diagonal {
    max-width: 600px;
    margin-left: 15%;
    margin-bottom: 80px;
    transform: skewY(-1deg);
}

.section-header-diagonal h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 800;
}

.section-header-diagonal p {
    font-size: 19px;
    color: var(--text-light);
}

.services-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-card-large {
    flex: 1 1 calc(50% - 20px);
    transform: rotate(-1deg);
}

.service-card-offset {
    transform: translateY(40px) rotate(1deg);
}

.service-card-wide {
    flex: 1 1 calc(66.666% - 20px);
    transform: translateY(-30px);
}

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

.service-visual img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}

.service-card:hover .service-visual img {
    transform: scale(1.08);
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.trust-diagonal {
    padding: 100px 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.trust-points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.trust-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 18px;
    line-height: 1.6;
}

.form-section {
    padding: 120px 40px;
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 20%;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 12px;
}

.btn-submit {
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.3);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 80px 60px;
    background-color: #fef9f0;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

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

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

.page-header-offset {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin-bottom: 100px;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
    transform: skewY(2deg);
}

.page-header-offset p {
    font-size: 20px;
    transform: skewY(2deg);
}

.about-story {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-content-narrow {
    flex: 1;
    max-width: 600px;
}

.story-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content-narrow p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-overlapping {
    flex: 1;
    transform: rotate(2deg) translateY(-30px);
}

.story-image-overlapping img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.15);
}

.philosophy-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.philosophy-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.philosophy-card-elevated {
    transform: translateY(-20px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.philosophy-card-elevated h3 {
    color: var(--bg-white);
}

.philosophy-card-elevated p {
    color: rgba(255, 255, 255, 0.9);
}

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

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-diagonal {
    padding: 100px 60px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.expertise-diagonal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
}

.expertise-text {
    flex: 1;
}

.expertise-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.expertise-visual {
    flex: 1;
    transform: rotate(-2deg);
}

.expertise-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.12);
}

.cta-section-offset {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    text-align: center;
    transform: skewY(2deg);
    margin: 80px 0;
}

.cta-section-offset h2 {
    font-size: 44px;
    margin-bottom: 24px;
    font-weight: 800;
    transform: skewY(-2deg);
}

.cta-section-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    transform: skewY(-2deg);
}

.cta-section-offset .cta-primary {
    background-color: var(--accent-color);
    transform: skewY(-2deg);
}

.cta-section-offset .cta-primary:hover {
    background-color: #e67e22;
}

.services-detail-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-detail-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 30px 0;
}

.process-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
}

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

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

.step-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 60px;
}

.contact-content-asymmetric {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

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

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

.contact-detail {
    margin-bottom: 40px;
}

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

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

.contact-visual-offset {
    flex: 1;
    transform: rotate(2deg) translateY(40px);
}

.contact-visual-offset img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
}

.legal-info-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.legal-info-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.legal-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.legal-block h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: var(--bg-white);
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-content > p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-section {
    margin-bottom: 50px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

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

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

    .nav-floating {
        top: 50px;
        right: 20px;
        padding: 15px 20px;
    }

    .intro-offset {
        flex-direction: column;
        margin-left: 0;
        padding: 80px 30px;
    }

    .intro-visual-card {
        transform: none;
    }

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

    .service-card,
    .service-card-large,
    .service-card-offset,
    .service-card-wide {
        flex: 1 1 100%;
        transform: none;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .about-story,
    .expertise-content,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-content-offset p {
        font-size: 17px;
    }

    .page-header-offset h1 {
        font-size: 36px;
    }

    .section-header-diagonal h2,
    .cta-section-offset h2 {
        font-size: 32px;
    }

    .nav-floating {
        position: static;
        margin: 20px;
    }

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

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