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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.header-asymmetric {
    position: relative;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    position: absolute;
    top: 5px;
    right: 5%;
    font-size: 11px;
    color: var(--text-light);
    background-color: #f8f9fa;
    padding: 4px 12px;
    border-radius: 3px;
}

.nav-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 120px;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 5% 80px 8%;
}

.hero-text-block {
    background-color: var(--bg-white);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateX(40px);
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50px;
    width: 55%;
    height: calc(100% - 100px);
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-offset {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 550px;
    padding-top: 40px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.intro-stats-scattered {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 30px 40px;
    border-left: 4px solid var(--accent-color);
}

.stat-card.stat-offset {
    margin-left: 60px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
}

.problem-section-irregular {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-left {
    flex: 1;
}

.problem-left img {
    width: 100%;
    display: block;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.problem-right-overlap {
    flex: 1;
    background-color: var(--secondary-color);
    color: white;
    padding: 60px;
    margin-left: -80px;
    position: relative;
    z-index: 2;
}

.problem-right-overlap h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.challenge-list {
    list-style: none;
    margin-bottom: 25px;
}

.challenge-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.challenge-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.problem-insight {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.services-asymmetric {
    background-color: var(--bg-light);
    padding: 100px 5% 120px;
    margin-bottom: 100px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: left;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.service-card.service-wide {
    flex: 1 1 100%;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

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

.service-content {
    padding: 35px;
}

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

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

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

.btn-select-service {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-irregular {
    margin: 100px 0;
    position: relative;
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto 0 10%;
    background-color: var(--bg-light);
    padding: 70px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.trust-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.trust-content-scattered h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
}

.trust-block.trust-offset {
    margin-top: 50px;
}

.trust-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.disclaimer-section {
    background-color: #fffbf0;
    border: 1px solid #f39c12;
    padding: 40px 5%;
    margin: 80px 0;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f6a00;
    text-align: center;
}

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

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

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

.footer-brand {
    flex: 1.5;
}

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

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 14px;
}

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

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

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 60px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.selected-service-info {
    background-color: white;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    text-align: left;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 5%;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

.about-hero-offset {
    padding: 80px 5% 60px;
    background-color: var(--bg-light);
    margin-bottom: 80px;
}

.about-intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 100px;
}

.about-intro-asymmetric h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
}

.story-section-irregular {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image-overlap {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.story-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content-offset {
    flex: 1;
    padding-left: 30px;
}

.story-content-offset h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-content-offset p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.values-asymmetric {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 800;
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-block.value-offset-1 {
    margin-top: 40px;
}

.value-block.value-offset-2 {
    margin-top: -20px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.team-intro-narrow {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-image-full {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-image-full img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-detail {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.approach-content-scattered {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.approach-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

.approach-item.approach-offset {
    margin-left: 40px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-inline {
    background-color: var(--secondary-color);
    padding: 80px 5%;
    margin: 80px 0;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 17px;
}

.btn-cta:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.services-hero {
    padding: 80px 5% 60px;
    background-color: var(--bg-light);
    margin-bottom: 80px;
}

.services-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

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

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

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.service-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-price {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--bg-light);
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
}

.services-cta {
    background-color: var(--primary-color);
    padding: 80px 5%;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-cta-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.contact-hero {
    padding: 80px 5% 60px;
    background-color: var(--bg-light);
    margin-bottom: 80px;
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.contact-details-offset {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.contact-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.contact-image-overlap {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-left: -40px;
}

.contact-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-approach {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.approach-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-centered h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

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

.step-block {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px;
    text-align: center;
}

.step-block.step-offset {
    margin-top: 40px;
}

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

.step-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-faq-offset {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5% 0 10%;
}

.faq-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-cta {
    background-color: var(--secondary-color);
    padding: 80px 5%;
}

.cta-box-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

.cta-box-asymmetric p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
        top: 0;
    }

    .hero-text-block {
        transform: none;
    }

    .intro-offset,
    .problem-section-irregular,
    .story-section-irregular,
    .service-detail-asymmetric,
    .contact-details-offset,
    .approach-content-scattered {
        flex-direction: column;
    }

    .problem-right-overlap {
        margin-left: 0;
    }

    .contact-image-overlap {
        margin-left: 0;
    }

    .services-header-offset,
    .about-intro-asymmetric {
        padding-left: 0;
    }

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

    .contact-faq-offset {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .services-header-offset h2,
    .about-intro-asymmetric h1 {
        font-size: 32px;
    }

    .form-container-offset {
        padding: 40px;
    }

    .footer-columns-irregular {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-block {
        padding: 30px;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

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

    .thanks-box {
        padding: 40px 20px;
    }
}