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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 300px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.nav-brand a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

.nav-cta {
    background: var(--secondary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.hero-asymmetric {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
    margin-left: 8%;
}

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

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-visual-overlap {
    flex: 1;
    min-width: 400px;
    position: relative;
    transform: translateY(-30px);
}

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

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.badge-text {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

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

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.trust-indicators {
    padding: 60px 20px;
    background: white;
}

.trust-grid-irregular {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-item.offset-up {
    transform: translateY(-15px);
}

.trust-item.offset-down {
    transform: translateY(15px);
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-light);
}

.intro-offset {
    padding: 100px 20px;
    background: white;
}

.split-irregular {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.content-block-left {
    flex: 1;
    min-width: 400px;
    padding-right: 40px;
}

.content-block-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.content-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.image-block-right-overlap {
    flex: 1;
    min-width: 400px;
    transform: rotate(-2deg);
}

.image-block-right-overlap img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-light);
}

.problem-block-offset {
    transform: translateX(5%);
}

.problem-block-offset h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.problem-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    color: var(--text-dark);
}

.problem-item.tilt-left {
    transform: rotate(-1deg);
    margin-left: -20px;
}

.problem-item.tilt-right {
    transform: rotate(1deg);
    margin-right: -20px;
}

.solution-highlight {
    background: var(--secondary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    font-size: 20px;
    transform: rotate(-0.5deg);
}

.services-showcase {
    padding: 120px 20px;
    background: white;
}

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 5%;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

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

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

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

.card-large {
    flex-basis: calc(50% - 15px);
    min-width: 450px;
}

.card-medium {
    flex-basis: calc(33.333% - 20px);
    min-width: 350px;
}

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

.service-card.offset-2 {
    transform: rotate(0.5deg);
}

.service-card.offset-3 {
    transform: rotate(-0.5deg);
}

.service-card.offset-4 {
    transform: rotate(1deg);
}

.service-card.offset-5 {
    transform: rotate(-0.8deg);
}

.service-card.offset-6 {
    transform: rotate(0.7deg);
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

.btn-select:hover {
    background: #2980b9;
}

.testimonial-offset {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonial-block-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content.tilt-slight {
    transform: rotate(-1deg);
    margin-left: -5%;
}

.testimonial-content.tilt-slight-reverse {
    transform: rotate(1deg);
    margin-right: -5%;
}

blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.insight-section {
    padding: 100px 20px;
    background: white;
}

.insight-layout-irregular {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.insight-text-block {
    flex: 1;
    min-width: 400px;
}

.insight-text-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-item strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.insight-visual-overlap {
    flex: 1;
    min-width: 400px;
    transform: rotate(2deg);
}

.insight-visual-overlap img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-0.5deg);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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(--secondary-color);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input {
    margin-top: 4px;
}

.form-group-checkbox label {
    font-weight: normal;
    color: var(--text-light);
    font-size: 14px;
}

.form-group-checkbox a {
    color: var(--secondary-color);
}

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

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

.final-cta-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.final-cta-asymmetric {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(-3%);
}

.final-cta-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta-asymmetric p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 20px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
}

.btn-large:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid-irregular {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    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 ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: white;
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 600px;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

.btn-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

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

.page-hero-offset {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    text-align: center;
}

.page-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
    background: white;
}

.story-layout-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.story-image-offset {
    flex: 1;
    min-width: 400px;
    transform: rotate(-2deg);
}

.story-image-offset img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.story-content {
    flex: 1;
    min-width: 400px;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

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

.value-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-basis: calc(50% - 15px);
    min-width: 350px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
    flex-basis: 300px;
    padding: 20px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.numbers-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.numbers-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: white;
}

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

.number-block {
    text-align: center;
    flex-basis: calc(33.333% - 27px);
    min-width: 200px;
}

.number-large {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section-about {
    padding: 80px 20px;
    background: var(--bg-light);
}

.cta-box-asymmetric {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: rotate(-1deg);
}

.cta-box-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-asymmetric p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 20px;
    background: white;
}

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

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

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.service-detail-visual {
    flex: 1;
    min-width: 400px;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: inline-block;
}

.price-label {
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.comparison-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    flex: 1;
    padding: 25px;
    font-weight: 600;
    background: var(--bg-light);
}

.comparison-others {
    flex: 1;
    padding: 25px;
    color: var(--text-light);
}

.comparison-us {
    flex: 1;
    padding: 25px;
    color: var(--success-color);
    font-weight: 600;
}

.cta-section-services {
    padding: 80px 20px;
    background: white;
}

.contact-content {
    padding: 80px 20px;
    background: white;
}

.contact-layout-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 350px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

.contact-directions {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-directions h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.directions-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.direction-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-cta {
    padding: 80px 20px;
    background: white;
}

.thanks-section {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.thanks-content-asymmetric {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.thanks-lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--success-color);
}

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

.thanks-next-steps {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

.step-item {
    flex-basis: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-light);
    font-size: 16px;
}

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

.thanks-contact-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.thanks-contact-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-page {
    padding: 140px 20px 80px;
    background: white;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-update {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-text-block,
    .hero-visual-overlap {
        min-width: 100%;
    }

    .content-block-left,
    .image-block-right-overlap,
    .story-image-offset,
    .story-content,
    .insight-text-block,
    .insight-visual-overlap,
    .service-detail-content,
    .service-detail-visual,
    .contact-info-block,
    .contact-map-placeholder {
        min-width: 100%;
    }

    .card-large,
    .card-medium {
        min-width: 100%;
        flex-basis: 100%;
    }

    .value-card {
        flex-basis: 100%;
        min-width: 100%;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

    .form-wrapper-offset {
        padding: 30px 20px;
    }

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

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        transform: none;
    }

    .testimonial-content.tilt-slight,
    .testimonial-content.tilt-slight-reverse {
        transform: none;
        margin: 0;
    }

    .problem-item.tilt-left,
    .problem-item.tilt-right {
        transform: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 16px;
    }

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

    .final-cta-asymmetric h2 {
        font-size: 32px;
    }
}
