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

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #e8956f;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-asymmetric.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    max-width: 600px;
    transform: translateY(-30px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #234a72;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.hero-image-offset img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 650px;
}

.intro-split {
    padding: 6rem 2rem;
    background: #fff;
}

.intro-split > div {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    max-width: 700px;
    margin-bottom: 3rem;
}

.intro-narrow h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-stats-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    transform: translateX(60px);
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #3d6fa0);
    color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

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

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

.stat-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

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

.problem-layer {
    padding: 5rem 2rem;
    background: var(--light-color);
    position: relative;
}

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

.problem-text {
    flex: 1.2;
}

.problem-text h2 {
    font-size: 2.6rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pain-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
}

.pain-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.problem-image-float {
    flex: 1;
    transform: translateY(-60px) translateX(-30px);
}

.problem-image-float img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.services-preview-asymmetric {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: left;
    transform: translateX(-20px);
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.3rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.card-offset-2 {
    transform: translateY(30px);
}

.service-card.card-offset-3 {
    transform: translateY(-10px);
}

.service-card.card-offset-4 {
    transform: translateY(20px);
}

.service-card.card-offset-5 {
    transform: translateY(-15px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #3d6fa0);
    color: #fff;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #234a72;
    transform: translateY(-2px);
}

.trust-block-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.trust-content-layered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-text-main {
    max-width: 800px;
}

.trust-text-main h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.trust-text-main p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.testimonials-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: rotate(0.5deg);
    transition: transform 0.3s ease;
}

.testimonial-card:nth-child(2) {
    transform: rotate(-1deg) translateY(20px);
}

.testimonial-card:nth-child(3) {
    transform: rotate(1deg) translateY(-10px);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

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

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

.how-it-works-stagger {
    padding: 6rem 2rem;
    background: #fff;
}

.how-it-works-stagger h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 4rem;
    font-weight: 700;
}

.steps-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.step-block {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--light-color);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.step-block.step-1 {
    transform: translateY(-20px);
}

.step-block.step-2 {
    transform: translateY(30px);
}

.step-block.step-3 {
    transform: translateY(-10px);
}

.step-block.step-4 {
    transform: translateY(20px);
}

.step-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-section-sticky {
    padding: 6rem 2rem;
    background: var(--dark-color);
    color: #fff;
}

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

.cta-text-side {
    flex: 1;
}

.cta-text-side h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text-side p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.benefits-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-checklist li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.form-side {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-40px);
}

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

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

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

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

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

.btn-submit {
    padding: 1.2rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-submit:hover {
    background: #d67d58;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.why-us-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-image-left {
    flex: 1;
    transform: translateY(-40px) translateX(-20px);
}

.why-image-left img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.why-content-right h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.faq-offset {
    padding: 6rem 2rem;
    background: #fff;
}

.faq-offset h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-asymmetric {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--success-color);
    color: #fff;
}

.btn-primary:hover {
    background: #218838;
}

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

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

.page-header-services,
.about-hero,
.contact-header,
.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), #3d6fa0);
    color: #fff;
    text-align: center;
}

.header-content,
.about-hero-content,
.contact-header-content,
.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1,
.about-hero-content h1,
.contact-header-content h1,
.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-content p,
.about-hero-content .hero-subtitle,
.contact-header-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #fff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1.5;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-detail-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

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

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

.btn-service:hover {
    background: #234a72;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #d67d58;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.about-story {
    padding: 4rem 2rem;
    background: #fff;
}

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

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.about-values h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.about-team {
    padding: 5rem 2rem;
    background: #fff;
}

.about-team h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats-full {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #3d6fa0);
    color: #fff;
}

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

.stat-large {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number-big {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

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

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

.cta-content-centered p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details p {
    color: #666;
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-languages {
    margin-top: 3rem;
}

.contact-languages h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.language-list li {
    padding: 0.5rem 1.2rem;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.95rem;
    color: #666;
}

.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, var(--light-color), #e9ecef);
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.map-overlay {
    text-align: center;
    max-width: 400px;
}

.map-overlay p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.map-note {
    font-size: 0.95rem;
    color: #888;
}

.contact-faq {
    padding: 4rem 2rem;
    background: var(--light-color);
}

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

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

.contact-cta-final {
    padding: 4rem 2rem;
    background: #fff;
}

.cta-box-contact {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 20px;
}

.cta-box-contact h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box-contact p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.thanks-info {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 15px;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steps-list li {
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 4rem 2rem;
    background: #fff;
}

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

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

.additional-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    text-align: center;
}

.additional-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.additional-item p {
    color: #666;
    line-height: 1.7;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

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

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset-content,
    .problem-content-stacked,
    .cta-container,
    .why-us-layout,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .service-detail-image {
        min-width: 100%;
        max-height: 400px;
    }

    .hero-image-offset,
    .problem-image-float,
    .why-image-left {
        transform: none;
    }

    .intro-stats-offset {
        transform: none;
    }

    .form-side {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .service-card,
    .faq-item,
    .value-card,
    .team-member {
        flex: 1 1 100%;
    }

    .service-card.card-offset-1,
    .service-card.card-offset-2,
    .service-card.card-offset-3,
    .service-card.card-offset-4,
    .service-card.card-offset-5,
    .step-block.step-1,
    .step-block.step-2,
    .step-block.step-3,
    .step-block.step-4 {
        transform: none;
    }

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

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

    .intro-narrow h2,
    .services-header-offset h2,
    .how-it-works-stagger h2,
    .about-values h2,
    .about-team h2,
    .faq-offset h2 {
        font-size: 2.2rem;
    }

    .header-content h1,
    .about-hero-content h1,
    .contact-header-content h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 1.8rem;
    }

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

    .stat-number-big {
        font-size: 3rem;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
