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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.hero-asymmetric {
    min-height: 85vh;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-visual {
    flex: 1.2;
    position: relative;
    transform: translateX(-3rem);
}

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

.hero-content-float {
    flex: 1;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(2rem);
}

.display-large {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
}

.intro-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    transform: translateX(-1rem);
}

.intro-right {
    flex: 1.3;
    padding-top: 1rem;
}

.intro-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.visual-break {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.split-visual {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.visual-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.visual-card.offset-top {
    transform: translateY(3rem);
}

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

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.overlay-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.story-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.story-marker {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    left: -3rem;
    top: -2rem;
}

.section-title-offset {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    transform: translateX(2rem);
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-block {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.story-block.indent-block {
    margin-left: 4rem;
}

.story-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.services-pricing-asymmetric {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.pricing-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    transform: translateX(3rem);
}

.pricing-header-offset h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pricing-intro {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.offset-left {
    transform: translateX(-1rem);
}

.service-card.offset-right {
    transform: translateX(1rem);
}

.service-card.offset-bottom {
    transform: translateY(1rem);
}

.service-card.indent-service {
    margin-left: 2rem;
}

.service-visual {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.select-service-btn:hover {
    background-color: var(--primary-dark);
}

.form-section-asymmetric {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.form-wrapper-offset {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

#selected-service-display {
    color: var(--text-light);
    font-size: 1.125rem;
}

#selected-service-display strong {
    color: var(--primary-color);
}

.asymmetric-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

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

.form-group.full-width {
    flex: 1;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit-asymmetric {
    padding: 1.125rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-asymmetric:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.trust-markers {
    background-color: var(--secondary-color);
    color: white;
    padding: 5rem 2rem;
}

.markers-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.marker-item {
    text-align: center;
}

.marker-item.offset-marker {
    transform: translateY(1.5rem);
}

.marker-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.marker-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.testimonials-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-heading-offset {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transform: translateX(-2rem);
}

.testimonials-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card.offset-testimonial {
    transform: translateY(2rem);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-floating-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.cta-asymmetric-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.cta-asymmetric-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-asymmetric-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-col.offset-footer {
    transform: translateY(1rem);
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

.page-header-offset {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-image-offset {
    flex: 1;
}

.service-image-offset img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-content-float {
    flex: 1;
    padding: 2rem;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.service-benefits {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.service-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.benefits-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card.offset-benefit {
    transform: translateY(1.5rem);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.cta-section-services {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.about-intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-visual {
    flex: 1;
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-story-offset {
    flex: 1.2;
    padding-top: 2rem;
}

.about-story-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-story-offset p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.values-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-block.offset-value {
    transform: translateY(2rem);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.timeline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.timeline-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.timeline-asymmetric {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item.offset-timeline {
    margin-left: 3rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-member.offset-member {
    transform: translateY(1.5rem);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.stats-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.stats-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
    max-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item.offset-stat {
    transform: translateY(1.5rem);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.cta-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
    transform: rotate(1deg);
}

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-asymmetric p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-layout-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-detail-group {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail-group:last-child {
    border-bottom: none;
}

.contact-detail-group h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

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

.contact-visual-offset {
    flex: 1;
}

.contact-image {
    margin-bottom: 2rem;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-cta-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-cta-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
}

.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.faq-grid-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.offset-faq {
    transform: translateY(1.5rem);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.service-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.area-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.areas-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.area-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.area-card.offset-area {
    transform: translateX(2rem);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.contact-cta-final {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-final-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-email,
.btn-order {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.btn-order:hover {
    background-color: var(--primary-dark);
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

#service-info {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 280px;
    max-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

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

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

.legal-page {
    min-height: 80vh;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-offset,
    .split-visual,
    .about-intro-asymmetric,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .hero-visual {
        transform: none;
    }

    .hero-content-float {
        transform: none;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .display-large {
        font-size: 2.5rem;
    }

    .section-title-offset,
    .pricing-header-offset {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .display-large {
        font-size: 2rem;
    }

    .section-heading-offset {
        transform: none;
    }

    .service-card,
    .testimonial-card,
    .benefit-card,
    .faq-item,
    .value-block,
    .area-card {
        flex: 1 1 100%;
    }

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.indent-service {
        transform: none;
        margin-left: 0;
    }

    .timeline-item.offset-timeline {
        margin-left: 0;
    }

    .cta-asymmetric-block,
    .cta-content-asymmetric {
        transform: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .display-large {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .marker-number {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
