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

:root {
    --primary: #1a4d7a;
    --primary-dark: #0f3551;
    --secondary: #e8912d;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #2d7a3e;
    --error: #c83232;
}

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

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

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

a:hover {
    color: var(--secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 31, 31, 0.95);
    color: white;
    padding: 1.2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

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

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

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

.btn-accept:hover {
    background: #246e32;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hero-offset {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-image-offset img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 145, 45, 0.3);
}

.cta-primary:hover {
    background: #d17e1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 145, 45, 0.4);
}

.trust-indicator-bar {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.problem-section-asymmetric {
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.problem-content-left {
    flex: 1.2;
}

.problem-content-left h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-cross {
    color: var(--error);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.problem-visual-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.stat-box {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-box-1 {
    transform: rotate(-2deg);
    margin-left: -1rem;
}

.stat-box-2 {
    transform: rotate(3deg);
    margin-left: 2rem;
    background: var(--secondary);
}

.stat-big {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-small {
    font-size: 1rem;
    opacity: 0.95;
}

.solution-overlap {
    position: relative;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.solution-bg-block {
    position: absolute;
    top: 10%;
    right: 0;
    width: 60%;
    height: 80%;
    background: var(--bg-light);
    z-index: 0;
    transform: skewY(-3deg);
}

.solution-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    max-width: 700px;
}

.solution-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.7;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-card:nth-child(even) {
    transform: translateY(1.5rem);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    right: 1rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.benefits-zigzag {
    padding: 5rem 2rem;
    background: white;
}

.benefit-row {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    align-items: center;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-left .benefit-text {
    order: 1;
}

.benefit-left .benefit-image {
    order: 2;
}

.benefit-right .benefit-text {
    order: 2;
}

.benefit-right .benefit-image {
    order: 1;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.benefit-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.cta-sticky-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.form-container-offset {
    max-width: 650px;
    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-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary);
    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: #d17e1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 145, 45, 0.4);
}

.testimonials-masonry {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.testimonials-masonry h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-1 {
    transform: translateY(-1rem);
}

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

.testimonial-3 {
    transform: translateY(-0.5rem);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.services-preview-offset {
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.services-intro-block {
    flex: 1;
}

.services-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.services-intro-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.link-arrow {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

.services-cards-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-mini-card {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    transform: rotate(-1deg);
}

.service-mini-card:nth-child(2) {
    transform: rotate(1deg);
    margin-left: 1.5rem;
}

.service-mini-card:nth-child(3) {
    transform: rotate(-0.5deg);
    margin-left: 0.5rem;
}

.service-mini-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-mini-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

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

.faq-layout {
    display: flex;
    gap: 3rem;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.faq-col-2 {
    transform: translateY(1rem);
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

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

.final-cta-overlap {
    position: relative;
    padding: 5rem 2rem;
    margin: 3rem 0 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #d17e1f 100%);
    z-index: 0;
    transform: skewY(-2deg);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.cta-large {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-split {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

.page-hero-minimal {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: var(--bg-light);
}

.page-hero-minimal h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-hero-minimal p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

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

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

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

.service-offset-4 {
    transform: translateX(1.5rem);
}

.service-offset-5 {
    transform: translateX(-1.5rem);
}

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

.service-content {
    flex: 1;
    position: relative;
}

.service-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.service-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

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

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

.service-price-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

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

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.btn-service:hover {
    background: #d17e1f;
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.form-cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-cta-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    text-align: center;
}

.form-cta-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-hero-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-1 {
    transform: rotate(-1deg);
}

.value-2 {
    transform: rotate(1deg);
}

.value-3 {
    transform: rotate(-0.5deg);
}

.value-4 {
    transform: rotate(0.8deg);
}

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

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

.team-minimal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.team-minimal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    text-align: center;
}

.team-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.member-photo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.member-role {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

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

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

.stats-layout {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.approach-step:nth-child(even) {
    transform: translateX(2rem);
}

.approach-step:nth-child(odd) {
    transform: translateX(-2rem);
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    flex-shrink: 0;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

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

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

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: var(--bg-light);
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-main-split {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.info-item a {
    color: var(--secondary);
    font-weight: 600;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.thanks-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-next-steps ol {
    text-align: left;
    display: inline-block;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

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

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

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

.thanks-assurance {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.assurance-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    text-align: center;
}

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

.assurance-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.assurance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

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

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

.legal-content {
    background: white;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
}

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

    .hero-text-block {
        padding-right: 0;
    }

    .hero-image-offset {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
        margin-top: 2rem;
    }

    .problem-section-asymmetric {
        flex-direction: column;
    }

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

    .benefit-row {
        flex-direction: column;
    }

    .benefit-left .benefit-text,
    .benefit-right .benefit-text {
        order: 1;
    }

    .benefit-left .benefit-image,
    .benefit-right .benefit-image {
        order: 2;
    }

    .service-block {
        flex-direction: column;
        transform: none !important;
    }

    .about-hero-split {
        flex-direction: column;
    }

    .contact-main-split {
        flex-direction: column;
    }

    .faq-layout {
        flex-direction: column;
    }

    .faq-col-1,
    .faq-col-2 {
        transform: none;
    }

    .services-preview-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    .approach-step:nth-child(even),
    .approach-step:nth-child(odd) {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container-offset {
        transform: none;
    }
}
