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

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
}

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

.hero-offset-content {
    width: 45%;
    padding-right: 80px;
    z-index: 2;
}

.hero-title {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-visual-block {
    position: absolute;
    right: 0;
    top: 15%;
    width: 50%;
    height: 70%;
    background-color: #f0f0f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0066cc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.intro-irregular {
    padding: 120px 60px;
    display: flex;
    gap: 100px;
    align-items: center;
    background-color: #fafafa;
}

.intro-text-narrow {
    width: 55%;
}

.intro-text-narrow h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-visual-offset {
    width: 40%;
    margin-top: -60px;
    background-color: #e8e8e8;
}

.intro-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.problem-amplify {
    padding: 100px 60px;
}

.problem-grid-overlap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    background-color: #ffffff;
    padding: 45px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.problem-card.card-left {
    width: 100%;
    margin-left: 0;
}

.problem-card.card-center {
    width: calc(50% - 15px);
    margin-left: 10%;
}

.problem-card.card-right {
    width: calc(50% - 15px);
    margin-left: auto;
}

.problem-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.insight-block {
    padding: 0;
    position: relative;
    min-height: 600px;
    background-color: #1a1a1a;
}

.insight-wrapper {
    display: flex;
    position: relative;
}

.insight-image-bg {
    width: 60%;
    background-color: #2a2a2a;
}

.insight-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.insight-content-float {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.insight-content-float h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.insight-content-float p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-preview-asymmetric {
    padding: 120px 60px;
    background-color: #f9f9f9;
}

.section-heading-offset {
    font-size: 48px;
    margin-bottom: 60px;
    margin-left: 20%;
    font-weight: 800;
}

.services-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-item.service-wide {
    width: calc(65% - 15px);
}

.service-item.service-narrow {
    width: calc(35% - 15px);
}

.service-icon {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.service-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0052a3;
}

.services-cta-offset {
    text-align: right;
    margin-right: 15%;
}

.testimonials-inline {
    padding: 100px 60px;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    background-color: #f5f5f5;
    padding: 50px;
    border-radius: 8px;
}

.testimonial-card.testimonial-left {
    width: 55%;
    margin-top: 40px;
}

.testimonial-card.testimonial-right {
    width: 45%;
    margin-top: -40px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.trust-elements {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.trust-content-diagonal {
    width: 50%;
}

.trust-content-diagonal h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-content-diagonal p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.trust-visual-diagonal {
    width: 50%;
    transform: rotate(-2deg);
    background-color: #e8e8e8;
}

.trust-visual-diagonal img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-form-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 18px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #f9f9f9;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

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

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

.footer-column {
    flex: 1;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 10000;
    display: flex;
    justify-content: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 15px;
    color: #4a4a4a;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
}

.btn-cookie:hover {
    background-color: #0052a3;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-cookie-alt:hover {
    background-color: #f0f0f0;
}

.page-header-diagonal {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.header-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.header-content-offset h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.header-content-offset p {
    font-size: 22px;
    color: #b0b0b0;
}

.services-detailed {
    padding: 80px 60px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-detail-card.card-offset-left {
    margin-left: 0;
    margin-right: 10%;
}

.service-detail-card.card-offset-right {
    margin-left: 10%;
    margin-right: 0;
}

.service-detail-image {
    width: 40%;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-number {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.service-pricing-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    display: block;
    margin-bottom: 10px;
}

.price-note {
    font-size: 13px;
    color: #888;
}

.service-cta {
    display: inline-block;
    padding: 16px 35px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.about-hero-content {
    width: 50%;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-hero-image {
    width: 50%;
    background-color: #f0f0f0;
}

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

.story-section-diagonal {
    padding: 100px 60px;
    display: flex;
    gap: 70px;
    background-color: #fafafa;
}

.story-text {
    width: 55%;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image-offset {
    width: 40%;
    margin-top: 60px;
    background-color: #e8e8e8;
}

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

.values-irregular {
    padding: 100px 60px;
}

.values-heading {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card.value-position-1 {
    width: calc(55% - 15px);
    margin-left: 0;
}

.value-card.value-position-2 {
    width: calc(45% - 15px);
    margin-top: -30px;
}

.value-card.value-position-3 {
    width: calc(40% - 15px);
    margin-left: 5%;
}

.value-card.value-position-4 {
    width: calc(55% - 15px);
    margin-top: 30px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.team-minimal {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.team-minimal h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.team-intro {
    text-align: center;
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.team-list-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    width: calc(50% - 20px);
}

.team-role {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0066cc;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
}

.approach-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-visual {
    width: 45%;
    background-color: #f0f0f0;
}

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

.approach-content {
    width: 55%;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.approach-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.cta-section-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.cta-content-float {
    max-width: 700px;
    margin-left: auto;
    margin-right: 15%;
    text-align: center;
}

.cta-content-float h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-float p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.contact-page-header {
    padding: 180px 60px 80px;
    text-align: center;
    background-color: #fafafa;
}

.contact-page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-page-header p {
    font-size: 22px;
    color: #4a4a4a;
}

.contact-content-split {
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    width: 50%;
}

.contact-info-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-visual-block {
    width: 50%;
    background-color: #f0f0f0;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #00cc66;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.selected-service-name {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.thanks-contact-info {
    font-size: 15px;
    color: #666;
}

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

.legal-page-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.legal-page-content h2 {
    font-size: 32px;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page-content ul,
.legal-page-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-page-content ul li,
.legal-page-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-page-content a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page-content a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 25px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-offset-content {
        width: 100%;
        padding-right: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-visual-block {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        margin-top: 40px;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 80px 30px;
    }

    .intro-text-narrow,
    .intro-visual-offset {
        width: 100%;
    }

    .problem-card.card-center,
    .problem-card.card-right {
        width: 100%;
        margin-left: 0;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .insight-image-bg {
        width: 100%;
        height: 400px;
    }

    .insight-content-float {
        position: relative;
        width: 100%;
        right: 0;
        transform: none;
        margin-top: -50px;
    }

    .services-stagger {
        flex-direction: column;
    }

    .service-item.service-wide,
    .service-item.service-narrow {
        width: 100%;
    }

    .testimonials-inline {
        flex-direction: column;
    }

    .testimonial-card.testimonial-left,
    .testimonial-card.testimonial-right {
        width: 100%;
        margin-top: 0;
    }

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

    .trust-content-diagonal,
    .trust-visual-diagonal {
        width: 100%;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 40px;
    }

    .service-detail-card.card-offset-left,
    .service-detail-card.card-offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-image {
        width: 100%;
    }

    .about-hero-offset,
    .story-section-diagonal,
    .approach-asymmetric,
    .contact-content-split {
        flex-direction: column;
    }

    .about-hero-content,
    .about-hero-image,
    .story-text,
    .story-image-offset,
    .approach-visual,
    .approach-content,
    .contact-info-block,
    .contact-visual-block {
        width: 100%;
    }

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

    .value-card.value-position-1,
    .value-card.value-position-2,
    .value-card.value-position-3,
    .value-card.value-position-4 {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .team-list-offset {
        flex-direction: column;
    }

    .team-member {
        width: 100%;
    }
}