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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7ab9;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 35px;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 30px;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    top: -40px;
    right: -60px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.intro-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.3;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    top: 60px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

.problem-amplification {
    background-color: var(--bg-light);
    padding: 100px 30px;
    margin: 80px 0;
}

.problem-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.problem-content-asymmetric img {
    width: 55%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.problem-text-overlap {
    position: absolute;
    right: 0;
    top: 80px;
    width: 50%;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-text-overlap h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.problem-text-overlap p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-section-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

.insight-header-wide {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.insight-header-wide h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card.offset-1 {
    margin-top: 0;
}

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

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

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

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

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

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

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

.select-service:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.trust-building-split {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.trust-content-left {
    flex: 1;
}

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

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

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.testimonials-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    top: 40px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal-irregular {
    background-color: var(--bg-light);
    padding: 100px 30px;
    margin: 80px 0;
}

.benefits-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.benefits-header-center h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-layout-mixed {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large {
    flex: 1 1 100%;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.benefit-large h3 {
    font-size: 28px;
    padding: 30px 40px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-large p {
    font-size: 17px;
    padding: 0 40px 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-small {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-small h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cta-section-overlap {
    position: relative;
    margin: 100px 0;
}

.cta-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: skewY(-1deg);
}

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

.cta-content-asymmetric p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.form-section-irregular {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 30px;
}

.form-container-offset {
    background-color: var(--bg-light);
    padding: 70px;
    border-radius: 12px;
    position: relative;
    left: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-container-offset > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
    margin: 80px 0 0;
}

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

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

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 30px 30px;
}

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

.footer-block-wide {
    flex: 1.5;
}

.footer-block-narrow {
    flex: 1;
}

.main-footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-footer p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.main-footer ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.main-footer ul li a:hover {
    opacity: 1;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 900;
    transition: all 0.3s;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.sticky-cta span {
    font-size: 15px;
    font-weight: 600;
}

.sticky-cta-btn {
    background-color: var(--bg-white);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.page-header-asymmetric {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 30px 80px;
    color: var(--bg-white);
}

.header-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 60px;
}

.header-content-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.header-content-offset p {
    font-size: 22px;
    opacity: 0.9;
}

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

.services-intro-wide {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.services-intro-wide h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-intro-wide p {
    font-size: 19px;
    color: var(--text-light);
}

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

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-content-left h4,
.service-content-right h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.service-content-left ul li,
.service-content-right ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 30px 0;
}

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

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

.service-image-right,
.service-image-left {
    flex: 0.9;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.process-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
    margin: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.process-steps-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.cta-services {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    margin: 80px 0;
}

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

.cta-services p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.about-hero-offset {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 30px 100px;
    color: var(--bg-white);
    position: relative;
}

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

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 24px;
    opacity: 0.9;
}

.mission-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.mission-text-wide {
    flex: 1.2;
}

.mission-text-wide h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.mission-text-wide p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-image-offset {
    flex: 0.8;
    position: relative;
    top: -30px;
}

.mission-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.values-section-irregular h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.values-grid-mixed {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card.large {
    flex: 1 1 100%;
}

.value-card.small {
    flex: 1 1 calc(50% - 15px);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.approach-section-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.approach-content-left {
    flex: 1;
}

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

.approach-content-left > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.approach-visual-right {
    flex: 0.9;
}

.approach-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.experience-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

.experience-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.experience-content-center h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-content-center p {
    font-size: 18px;
    color: var(--text-light);
}

.expertise-areas-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-block {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.why-us-section-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-us-image-left {
    flex: 0.8;
}

.why-us-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-us-content-right {
    flex: 1.2;
}

.why-us-content-right h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 60px;
}

.reason-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cta-about {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    margin: 80px 0 0;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content-centered p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 30px;
    color: var(--bg-white);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

.contact-main-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.contact-info-left {
    flex: 0.8;
}

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

.contact-detail-block {
    margin-bottom: 35px;
}

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

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

.contact-detail-block .note {
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
}

.contact-form-right {
    flex: 1.2;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.contact-form-right > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-section-irregular {
    background-color: var(--bg-light);
    padding: 80px 30px;
    margin: 80px 0 0;
}

.faq-section-irregular h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .hero-text-block {
        padding-left: 0;
    }

    .hero-image-offset {
        right: 0;
    }

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

@media (max-width: 992px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content-offset,
    .intro-irregular,
    .problem-content-asymmetric,
    .trust-building-split,
    .contact-main-asymmetric,
    .approach-section-split,
    .mission-asymmetric,
    .why-us-section-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset {
        top: 0;
    }

    .problem-text-overlap {
        position: static;
        width: 100%;
    }

    .problem-content-asymmetric img {
        width: 100%;
    }

    .intro-stats-right {
        top: 0;
    }

    .service-detail-irregular {
        flex-direction: column;
    }

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

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

    .process-step.offset {
        margin-top: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        flex-direction: column;
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
}

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

    .hero-text-block p {
        font-size: 18px;
    }

    .intro-block-left h2,
    .insight-header-wide h2 {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        margin-top: 0;
    }

    .benefits-layout-mixed {
        flex-direction: column;
    }

    .benefit-small {
        min-width: 100%;
    }

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

    .faq-grid-asymmetric {
        flex-direction: column;
    }

    .faq-item {
        min-width: 100%;
    }

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

    .thanks-cta {
        flex-direction: column;
    }

    .expertise-areas-irregular {
        flex-direction: column;
    }

    .expertise-block {
        min-width: 100%;
    }

    .expertise-block.offset {
        margin-top: 0;
    }

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

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