/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --background-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

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

/* Navigation - Asymmetric Offset */
.nav-offset {
    background: var(--background-white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

/* Hero - Asymmetric Layout */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 5%;
    transform: translateY(-30px);
}

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

.hero-subtext {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-image-float img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* CTAs */
.cta-primary, .cta-secondary, .cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

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

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

.cta-inline {
    background: transparent;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    font-size: 1.1rem;
    border-radius: 0;
}

.cta-inline:hover {
    transform: translateX(5px);
}

/* Trust Strip */
.trust-strip {
    background: var(--background-light);
    padding: 3rem 2rem;
}

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

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

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

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

/* Intro Section - Asymmetric */
.intro-offset {
    padding: 6rem 2rem;
    background: var(--background-white);
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-left {
    flex: 1;
    transform: translateY(-40px);
}

.intro-left img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.intro-right {
    flex: 1;
    transform: translateY(40px);
}

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

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Services Section */
.services-highlight {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 10%;
}

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

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

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

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

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-select, .service-detail-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-select:hover, .service-detail-cta:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Testimonials - Asymmetric */
.testimonial-asymmetric {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.testimonial-quote-large {
    flex: 2;
    transform: translateY(-30px);
}

.testimonial-quote-large p {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-small {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    transform: translateY(30px);
}

.testimonial-small p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--background-white);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-steps-offset {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.process-step:nth-child(odd) {
    transform: translateY(-20px);
}

.process-step:nth-child(even) {
    transform: translateY(20px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--background-light);
    line-height: 1;
    margin-bottom: 1rem;
}

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

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

/* Form Section - Offset */
.form-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateX(-5%);
}

.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);
    margin-bottom: 2.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    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);
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.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 */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.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;
    margin: 0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

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

/* Page Heroes */
.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page */
.story-section {
    padding: 6rem 2rem;
    background: var(--background-white);
}

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

.story-image-offset {
    flex: 1;
    transform: translateY(-30px) rotate(-2deg);
}

.story-image-offset img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

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

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

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

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

.value-card:nth-child(odd) {
    transform: translateY(-15px);
}

.value-card:nth-child(even) {
    transform: translateY(15px);
}

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

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

/* Team Section */
.team-intro {
    padding: 6rem 2rem;
    background: var(--background-white);
}

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

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

.team-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.team-description {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.numbers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.number-block {
    text-align: center;
    min-width: 200px;
}

.number-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Certifications */
.certifications-section {
    padding: 6rem 2rem;
    background: var(--background-white);
}

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

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

.cert-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* CTA About */
.cta-about {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

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

.cta-button, .cta-button-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-button-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Services Page */
.services-intro {
    padding: 3rem 2rem;
    background: var(--background-light);
}

.services-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Service Detail Items */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

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

.service-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.service-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-pricing-detail {
    margin-bottom: 2rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

/* Additional Services */
.additional-services {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.additional-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.additional-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.additional-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Pricing CTA */
.pricing-cta-section {
    padding: 6rem 2rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.pricing-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Contact Page */
.contact-main {
    padding: 6rem 2rem;
    background: var(--background-white);
}

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

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

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

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

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

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map-placeholder {
    flex: 1;
    background: var(--background-light);
    border-radius: 15px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Contact Approach */
.contact-approach {
    padding: 6rem 2rem;
    background: var(--background-light);
}

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

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

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

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

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

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

/* Contact CTA */
.contact-cta {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    background: var(--background-light);
    min-height: 80vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

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

.thanks-service-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

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

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

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

.thanks-contact a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: var(--background-white);
}

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

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

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-back a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .hero-image-float {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 3rem;
    }

    .hero-text-block {
        margin-left: 0;
        transform: none;
    }

    .intro-wrapper,
    .story-container,
    .testimonial-wrapper,
    .contact-container {
        flex-direction: column;
    }

    .intro-left,
    .intro-right,
    .story-image-offset,
    .story-text,
    .testimonial-quote-large,
    .testimonial-small {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

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

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

    .services-header-offset {
        padding-left: 0;
        text-align: center;
    }

    .services-header-offset h2 {
        font-size: 2rem;
    }

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

    .process-steps-offset {
        flex-direction: column;
    }

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

    .form-container-offset {
        padding: 2rem;
        transform: none;
    }

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

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

    .value-card:nth-child(odd),
    .value-card:nth-child(even) {
        transform: none;
    }
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .trust-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}