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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #0066cc;
    color: white;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.nav-offset {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.ad-disclosure {
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    font-size: 0.85rem;
    color: #666;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-20px);
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(20px);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-diagonal {
    padding: 4rem 2rem;
    background: white;
}

.diagonal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-column-left {
    flex: 1.5;
    transform: translateY(30px);
}

.intro-column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-column-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transform: rotate(-2deg);
}

.stat-card:nth-child(2) {
    transform: rotate(2deg) translateX(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
}

.services-grid-irregular {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    transform: translateX(20px);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 25px rgba(0, 0, 0, 0.12);
}

.service-card.large {
    flex: 1 1 calc(55% - 1rem);
}

.service-card.medium {
    flex: 1 1 calc(45% - 1rem);
}

.service-card.small {
    flex: 1 1 calc(40% - 1rem);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
}

.approach-overlap {
    padding: 5rem 2rem;
    background: white;
    position: relative;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 2rem;
}

.approach-image-bg {
    flex: 1;
    position: relative;
    z-index: 1;
}

.approach-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-text-float {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-40px);
    z-index: 2;
}

.approach-text-float h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-text-float p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.benefits-stagger {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.benefits-stagger h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-block.left-offset {
    margin-left: 0;
    margin-right: auto;
    max-width: 70%;
}

.benefit-block.right-offset {
    margin-left: auto;
    margin-right: 0;
    max-width: 70%;
}

.benefit-block.center-offset {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

.benefit-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.testimonials-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-card.offset-1 {
    transform: translateY(-20px);
}

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

.testimonial-card p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.form-section-diagonal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.trust-indicators {
    padding: 4rem 2rem;
    background: white;
}

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

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.indicator {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.indicator-icon {
    display: block;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.indicator p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-block p {
    color: #aaa;
    line-height: 1.7;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #aaa;
}

.page-hero-offset {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-diagonal {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(30px);
}

.hero-text-diagonal h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-diagonal p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.story-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-image-float {
    flex: 1;
    transform: rotate(-2deg);
}

.story-image-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-text-block {
    flex: 1;
    transform: translateX(-30px);
}

.story-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-stagger {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-stagger h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card.offset-left {
    margin-right: auto;
    max-width: 65%;
}

.value-card.offset-right {
    margin-left: auto;
    max-width: 65%;
}

.value-card.offset-center {
    margin: 0 auto;
    max-width: 75%;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.team-diagonal {
    padding: 5rem 2rem;
    background: white;
}

.team-intro {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-stats {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: #555;
}

.approach-detail {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.step-block {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-block.offset {
    transform: translateY(40px);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.cta-about-offset {
    padding: 5rem 2rem;
    background: white;
}

.cta-content-diagonal {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 4rem;
    border-radius: 12px;
    color: white;
    transform: rotate(-1deg);
}

.cta-content-diagonal h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content-diagonal p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.services-hero-diagonal {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.services-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.service-detail-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

.service-detail-asymmetric.reverse {
    background: #f8f9fa;
}

.service-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-main-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-main-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
}

.service-main-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.service-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.service-detail-asymmetric.reverse .service-features {
    background: white;
}

.service-features h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-features ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-features ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-pricing-box {
    background: white;
    border: 2px solid #0066cc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.service-detail-asymmetric.reverse .service-pricing-box {
    background: #f8f9fa;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.services-cta-diagonal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

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

.cta-services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-services-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-services {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.contact-hero-offset {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.contact-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.contact-main-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.info-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.info-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-image-diagonal {
    flex: 1;
    transform: rotate(2deg);
}

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

.directions-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.directions-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.directions-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.transport-item strong {
    color: #1a1a1a;
}

.faq-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

.faq-asymmetric h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section-center {
    padding: 6rem 2rem;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: #333;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-num {
    background: #0066cc;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.4rem;
}

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

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

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.legal-page {
    padding: 4rem 2rem;
    background: white;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #0052a3;
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .diagonal-container,
    .approach-content,
    .story-container,
    .contact-layout,
    .testimonial-wrapper {
        flex-direction: column;
    }

    .hero-text-block,
    .intro-column-left,
    .approach-text-float,
    .story-text-block {
        transform: none;
    }

    .hero-image-overlap {
        transform: none;
    }

    .benefit-block.left-offset,
    .benefit-block.right-offset,
    .benefit-block.center-offset,
    .value-card.offset-left,
    .value-card.offset-right,
    .value-card.offset-center {
        margin: 0;
        max-width: 100%;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 1 1 100%;
    }

    .step-block {
        flex: 1 1 100%;
    }

    .step-block.offset {
        transform: none;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .team-stats,
    .indicators-grid {
        flex-direction: column;
    }
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-text-block h1,
    .hero-text-diagonal h1,
    .contact-hero-content h1,
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .section-title-offset,
    .values-stagger h2,
    .faq-asymmetric h2 {
        font-size: 2rem;
    }

    .form-container-asymmetric,
    .cta-content-diagonal {
        transform: none;
    }

    .story-image-float,
    .contact-image-diagonal {
        transform: none;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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