:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

html {
    scroll-behavior: smooth;
}

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);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand strong {
    color: var(--secondary-color);
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    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%;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-offset-left {
    flex: 1;
    padding: 8% 5% 5% 8%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-accent-block {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.15;
    top: 15%;
    right: 10%;
    transform: rotate(25deg);
    z-index: 1;
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

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

.intro-offset {
    padding: 5rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--bg-white);
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 150px;
}

.services-creative {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-large {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-card-large .service-visual {
    flex: 1;
}

.service-card-large .service-info {
    flex: 1;
}

.service-card-offset {
    flex: 1 1 calc(60% - 1rem);
    margin-left: 8%;
}

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

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

.service-card-vertical {
    flex: 1 1 calc(40% - 1rem);
    margin-left: auto;
}

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

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-large .service-visual {
    height: 100%;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.cta-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    transition: all 0.3s ease;
}

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

.sticky-text {
    color: white;
    font-weight: 600;
}

.sticky-btn {
    padding: 0.7rem 1.5rem;
    background: white;
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
}

.trust-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.trust-container {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-text-block {
    flex: 1;
}

.trust-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.process-list {
    list-style: none;
    margin-bottom: 2rem;
}

.process-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-text-link {
    color: var(--secondary-color);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-text-link:hover {
    opacity: 0.8;
}

.trust-image-offset {
    flex: 1;
    margin-left: -5%;
}

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

.testimonials-asymmetric {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-left {
    flex: 1 1 100%;
    margin-left: 5%;
}

.testimonial-center {
    flex: 1 1 calc(55% - 1rem);
    margin-left: auto;
}

.testimonial-right {
    flex: 1 1 calc(40% - 1rem);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

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

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
}

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

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

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

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.final-cta {
    padding: 5rem 5%;
    background: var(--bg-white);
    text-align: center;
}

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

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

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

.footer-column a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #c0392b;
}

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

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

.page-header-offset {
    margin-top: 80px;
    padding: 4rem 5% 2rem 15%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.header-content-left {
    max-width: 700px;
}

.header-content-left h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.header-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    opacity: 0.1;
    top: 20%;
    right: 10%;
    transform: rotate(-15deg);
}

.about-story {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.story-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text {
    flex: 1;
}

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

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

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

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

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

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

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

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

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

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

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

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

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

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

.cta-about {
    padding: 5rem 5%;
    background: var(--bg-white);
    text-align: center;
}

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

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

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

.services-detail {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

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

.service-detail-visual {
    flex: 1;
}

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

.service-detail-content {
    flex: 1;
}

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

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

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

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

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

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

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

.pricing-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.services-cta {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-section {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.contact-layout {
    max-width: 800px;
}

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

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

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

.info-block p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.info-block a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

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

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

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

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

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

.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

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

.thanks-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.legal-content {
    padding: 3rem 5%;
    background: var(--bg-white);
}

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

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

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

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-container a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 5%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-right {
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

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

    .service-card-offset,
    .service-card-small,
    .service-card-medium,
    .service-card-vertical,
    .service-card-compact {
        flex: 1 1 100%;
        margin-left: 0;
    }

    .trust-container,
    .story-layout,
    .service-detail-item {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-image-offset {
        margin-left: 0;
    }

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

    .testimonial-left,
    .testimonial-center,
    .testimonial-right {
        flex: 1 1 100%;
        margin-left: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .cta-sticky {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
    }

    .sticky-text {
        display: none;
    }

    .page-header-offset {
        padding-left: 5%;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contact-form {
        padding: 2rem;
    }

    .service-info {
        padding: 1.5rem;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }
}