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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

.main-header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.navbar {
    padding: 1rem 2rem;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.ad-label {
    padding: 0.375rem 0.875rem;
    background: var(--secondary-color);
    color: white;
    font-size: 0.8125rem;
    border-radius: 4px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    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-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    max-width: 560px;
    padding-left: 3rem;
}

.hero-text-block h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(-40px) rotate(-2deg);
}

.hero-image-offset img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

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

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

.intro-overlap {
    margin-top: -80px;
    padding: 2rem;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.card-large h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.card-large p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.card-small {
    flex: 1 1 calc(45% - 1rem);
    padding: 1.75rem;
}

.card-small img {
    border-radius: 8px;
    margin-bottom: 1.25rem;
    background-color: var(--bg-light);
}

.card-small h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-small p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

.card-medium h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-medium p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.benefits-stacked {
    padding: 6rem 2rem;
}

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

.benefit-left .benefit-image {
    flex: 0 0 45%;
    transform: translateX(-40px);
}

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

.benefit-right {
    flex-direction: row-reverse;
}

.benefit-right .benefit-image {
    flex: 0 0 45%;
    transform: translateX(40px);
}

.benefit-right .benefit-text {
    flex: 1;
}

.benefit-image img {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.benefit-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

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

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    text-decoration: underline;
}

.service-preview-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(165deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

.section-title-offset {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.25rem;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-featured {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
}

.service-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

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

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

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

.cta-inline {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

.link-underline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.container-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group {
    margin-bottom: 1.75rem;
    flex: 1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.testimonials-offset {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-offset h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.testimonial-featured {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateY(-20px);
}

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

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

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

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

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

.trust-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-content img {
    flex: 0 0 45%;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: white;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

.footer-column ul li {
    margin-bottom: 0.625rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-story {
    padding: 5rem 2rem;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-block img {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

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

.values-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.value-card {
    background: white;
    padding: 2.25rem;
    border-radius: 12px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

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

.team-approach {
    padding: 5rem 2rem;
}

.approach-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.approach-image {
    flex: 0 0 40%;
}

.approach-image img {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.expertise-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.cta-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 3.5rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

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

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

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

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

.service-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.service-intro {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

.service-features ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-detail-image {
    flex: 0 0 40%;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.services-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

.cta-services {
    padding: 5rem 2rem;
}

.cta-box-large {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box-large h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

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

.contact-info-section {
    padding: 4rem 2rem;
}

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

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.contact-main > p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.contact-item .note {
    font-size: 0.875rem;
    font-style: italic;
}

.contact-additional h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-additional p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-additional ul {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-additional ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
    position: relative;
    color: var(--text-light);
}

.contact-additional ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

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

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

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

.map-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.map-note {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

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

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

.legal-content {
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.legal-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

#manageCookies {
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

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

    .benefit-block,
    .benefit-right {
        flex-direction: column;
    }

    .benefit-left .benefit-image,
    .benefit-right .benefit-image {
        transform: none;
    }

    .trust-content,
    .approach-content {
        flex-direction: column;
    }

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

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

    .contact-sidebar {
        flex: 1;
    }

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

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

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

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

    .section-title-offset {
        font-size: 2rem;
        margin-left: 0;
    }

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

    .card-featured {
        transform: none;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .value-card,
    .expertise-item {
        flex: 1 1 100%;
    }
}
