* {
    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;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: #0066ff;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-block {
    flex: 0 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0066ff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 14px;
    background-color: #f5f5f5;
    border-radius: 4px;
    flex: 0 0 auto;
}

.nav-offset {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-offset a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #0066ff;
}

.hero-asymmetric {
    padding: 80px 40px;
    background-color: #f8f9fa;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    max-width: 580px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -40px;
    margin-top: -60px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e5e5e5;
}

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

.cta-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,255,0.3);
}

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

.cta-secondary:hover {
    background-color: #0066ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 80px;
}

.intro-narrow h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.intro-stats-irregular {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-left: 80px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.stat-card.offset-1 {
    margin-top: 0;
    background-color: #fff5e6;
}

.stat-card.offset-2 {
    margin-top: 40px;
    background-color: #e6f5ff;
}

.stat-card.offset-3 {
    margin-top: 20px;
    background-color: #f0e6ff;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066ff;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #555;
    max-width: 200px;
}

.services-asymmetric {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-left p {
    font-size: 20px;
    color: #666;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-card.floating-1 {
    margin-left: 0;
    flex-direction: row;
}

.service-card.floating-2 {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-card.floating-3 {
    margin-left: 60px;
    flex-direction: row;
}

.service-card.floating-4 {
    margin-left: 180px;
    flex-direction: row-reverse;
}

.service-card.floating-5 {
    margin-left: 40px;
    flex-direction: row;
}

.service-image-wrap {
    flex: 0 0 380px;
    background-color: #e5e5e5;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e5e5e5;
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.price-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 36px;
    color: #0066ff;
    font-weight: 800;
}

.btn-service-select {
    padding: 14px 32px;
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-select:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,102,255,0.3);
}

.cta-overlay-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.cta-block-diagonal {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: rotate(-1deg);
    padding: 60px;
    background-color: #0066ff;
    border-radius: 20px;
}

.cta-block-diagonal h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block-diagonal p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-block-diagonal .cta-secondary {
    background-color: #ffffff;
    color: #0066ff;
    border: none;
}

.cta-block-diagonal .cta-secondary:hover {
    background-color: #f0f0f0;
    color: #0066ff;
}

.process-irregular {
    padding: 100px 40px;
    background-color: #ffffff;
}

.process-header-right {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: right;
    padding-right: 60px;
}

.process-header-right h2 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-block.step-1 {
    margin-left: 0;
}

.step-block.step-2 {
    margin-left: 100px;
}

.step-block.step-3 {
    margin-left: 50px;
}

.step-block.step-4 {
    margin-left: 150px;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: #e5e5e5;
    line-height: 1;
    flex-shrink: 0;
}

.step-block h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.testimonials-scattered {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #0066ff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card.pos-1 {
    margin-left: 0;
    max-width: 680px;
}

.testimonial-card.pos-2 {
    margin-left: 160px;
    max-width: 720px;
}

.testimonial-card.pos-3 {
    margin-left: 80px;
    max-width: 700px;
}

.testimonial-card p {
    font-size: 19px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto 0 120px;
}

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

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

.form-intro p {
    font-size: 18px;
    color: #666;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 48px;
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,255,0.3);
}

.trust-elements {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 300px;
}

.trust-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.page-hero-offset {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto 0 80px;
}

.page-hero-content h1 {
    font-size: 56px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 22px;
    color: #666;
}

.about-story-irregular {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block-left {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e5e5e5;
}

.story-content-right {
    flex: 1;
}

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

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

.values-scattered {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-scattered h2 {
    text-align: center;
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-card.offset-a {
    margin-left: 0;
    max-width: 680px;
}

.value-card.offset-b {
    margin-left: 140px;
    max-width: 720px;
}

.value-card.offset-c {
    margin-left: 70px;
    max-width: 700px;
}

.value-card.offset-d {
    margin-left: 200px;
    max-width: 660px;
}

.value-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.team-diagonal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-header h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.team-header p {
    font-size: 20px;
    color: #666;
}

.team-image-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    background-color: #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
}

.team-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e5e5e5;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-stack-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.tech-stack-offset h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.tech-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.tech-group {
    flex: 1;
    min-width: 280px;
}

.tech-group h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.tech-group p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.cta-block-about {
    padding: 80px 40px;
    background-color: #0066ff;
    text-align: center;
}

.cta-block-about h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-block-about p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-block-about .cta-primary {
    background-color: #ffffff;
    color: #0066ff;
}

.cta-block-about .cta-primary:hover {
    background-color: #f0f0f0;
    color: #0066ff;
}

.services-detail-asymmetric {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    gap: 60px;
}

.service-detail-card.floating-left {
    margin-left: 0;
    flex-direction: row;
}

.service-detail-card.floating-right {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 480px;
    background-color: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e5e5e5;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 32px 0;
}

.contact-layout-asymmetric {
    padding: 80px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block.offset-left {
    margin-left: 0;
}

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

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

.contact-item h3 {
    font-size: 20px;
    color: #0066ff;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.contact-note {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-image-offset {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 60px;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e5e5e5;
}

.map-placeholder {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.map-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.cta-visit {
    padding: 80px 40px;
    background-color: #0066ff;
    text-align: center;
}

.cta-visit h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-visit p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-visit .cta-primary {
    background-color: #ffffff;
    color: #0066ff;
}

.cta-visit .cta-primary:hover {
    background-color: #f0f0f0;
    color: #0066ff;
}

.thanks-hero {
    padding: 120px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.thanks-content p {
    font-size: 24px;
    color: #666;
}

.thanks-details {
    padding: 80px 40px;
    background-color: #ffffff;
}

.thanks-info {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-info > p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 60px;
}

.next-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 260px;
}

.step-item h3 {
    font-size: 24px;
    color: #0066ff;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.selected-service {
    margin-top: 40px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.selected-service p {
    font-size: 18px;
    color: #333;
}

.thanks-cta {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.legal-page {
    padding: 60px 40px 100px;
    background-color: #ffffff;
}

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

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

.legal-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 48px 0 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 32px 0 16px;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 20px 0 20px 28px;
}

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

.legal-content em {
    color: #888;
}

.legal-content a {
    color: #0066ff;
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .service-card.floating-1,
    .service-card.floating-2,
    .service-card.floating-3,
    .service-card.floating-4,
    .service-card.floating-5 {
        margin-left: 0;
        flex-direction: column;
    }

    .service-image-wrap {
        flex: 0 0 300px;
    }

    .about-story-irregular {
        flex-direction: column;
    }

    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .contact-image-offset {
        margin-top: 0;
    }

    .service-detail-card.floating-left,
    .service-detail-card.floating-right {
        margin-left: 0;
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

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

    .intro-narrow {
        margin-left: 20px;
    }

    .intro-stats-irregular {
        padding-left: 20px;
    }

    .section-header-left {
        padding-left: 20px;
    }

    .step-block.step-1,
    .step-block.step-2,
    .step-block.step-3,
    .step-block.step-4 {
        margin-left: 0;
    }

    .testimonial-card.pos-1,
    .testimonial-card.pos-2,
    .testimonial-card.pos-3 {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .value-card.offset-a,
    .value-card.offset-b,
    .value-card.offset-c,
    .value-card.offset-d {
        margin-left: 0;
    }

    .page-hero-content {
        margin-left: 20px;
    }
}
