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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --gray: #7f8c8d;
    --light-gray: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

/* Navigation - Asymmetric */
.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 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-color);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

/* Hero Asymmetric */
.hero-asymmetric {
    margin-top: 80px;
    padding: 4rem 2rem 4rem 2rem;
    background: var(--light-bg);
}

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

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

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

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

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.hero-image-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--accent-color);
}

/* Intro Diagonal */
.intro-diagonal {
    padding: 5rem 2rem;
    background: var(--white);
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-left {
    flex: 1.2;
}

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

.intro-left p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
}

.intro-right {
    flex: 0.8;
    transform: translateY(3rem);
}

.intro-right img {
    border-radius: 10px;
    box-shadow: -15px 15px 0 var(--light-gray);
}

/* Services Offset */
.services-offset {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding-left: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 8rem;
}

.service-card.offset-3 {
    margin-left: 2rem;
}

.service-card.offset-4 {
    margin-left: 10rem;
}

.service-card.offset-5 {
    margin-left: 5rem;
}

.service-card.offset-6 {
    margin-left: 3rem;
}

.service-image {
    flex: 0.4;
}

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

.service-content {
    flex: 0.6;
    padding: 2rem 2.5rem;
}

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

.service-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-color);
}

/* Visual Break */
.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 4rem;
    border-radius: 10px;
}

.visual-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visual-overlay p {
    font-size: 1.3rem;
}

/* Why Choose */
.why-choose {
    padding: 5rem 2rem;
    background: var(--white);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.why-content-left {
    flex: 1;
}

.why-content-left h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
}

.why-text h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

.why-image-right {
    flex: 0.8;
    transform: translateY(-3rem);
}

.why-image-right img {
    border-radius: 10px;
    box-shadow: 15px -15px 0 var(--accent-color);
}

/* CTA Floating Form */
.cta-floating {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-left-content {
    flex: 0.9;
    padding-right: 2rem;
}

.form-left-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-left-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
}

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

.form-right {
    flex: 1.1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    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(--accent-color);
}

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

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

/* Testimonials Offset */
.testimonials-offset {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

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

.testimonial-card {
    flex: 1;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: var(--light-gray);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--light-gray);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* About Page Styles */
.page-hero-simple {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    color: var(--gray);
}

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

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

.story-image-left {
    flex: 0.8;
    transform: translateY(-2rem);
}

.story-image-left img {
    border-radius: 10px;
    box-shadow: -20px 20px 0 var(--light-gray);
}

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

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

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

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

.philosophy-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-block {
    margin-bottom: 3rem;
}

.philosophy-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.philosophy-block h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-block p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
}

.philosophy-points {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.point {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.point p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

.visual-statement {
    position: relative;
    height: 600px;
}

.statement-image {
    width: 100%;
    height: 100%;
}

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

.statement-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.statement-text-overlay blockquote {
    font-size: 2.5rem;
    color: var(--white);
    font-style: italic;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem 3rem;
    border-radius: 10px;
    max-width: 800px;
}

.values-grid {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.value-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

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

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

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

.cta-content-center p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Services Page Styles */
.page-hero-services {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--light-bg);
}

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

.hero-text-half {
    flex: 1;
}

.hero-text-half h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-text-half p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

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

.hero-image-half img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-detailed {
    padding: 3rem 2rem;
    background: var(--white);
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

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

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

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

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

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

.service-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: var(--text-color);
}

.service-includes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

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

.price-label {
    font-size: 1rem;
    color: var(--gray);
}

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

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

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

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

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

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

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

.faq-item {
    flex: 0 0 calc(50% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

.cta-bottom {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

.cta-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-cta-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

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

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
}

.contact-main {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

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

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

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

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

.contact-block a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.contact-block a:hover {
    color: var(--primary-color);
}

.contact-block .note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.5rem;
}

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

.contact-image-side img {
    border-radius: 10px;
    box-shadow: 15px 15px 0 var(--accent-color);
}

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

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Thanks Page */
.thanks-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--light-bg);
    min-height: calc(100vh - 80px);
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.thanks-info p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.thanks-next-steps {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

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

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

.step {
    display: flex;
    gap: 2rem;
}

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

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

.step-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

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

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

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

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.legal-intro {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

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

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

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-color);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.gdpr-table th,
.cookies-table th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-offset,
    .diagonal-content,
    .story-container,
    .why-container,
    .form-container-asymmetric,
    .hero-split,
    .service-detail-block,
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image-block,
    .intro-right,
    .why-image-right {
        transform: none;
        margin-top: 0;
    }

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

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        margin-left: 0;
    }

    .philosophy-points,
    .values-cards,
    .testimonials-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

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

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

    .section-header-offset h2,
    .philosophy-block h2,
    .values-header h2,
    .testimonials-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .intro-left h2,
    .story-content-right h2 {
        font-size: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-container {
        padding: 2rem;
    }

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

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

    .form-container-asymmetric {
        padding: 2rem 1.5rem;
    }

    .visual-overlay h3 {
        font-size: 1.8rem;
    }

    .visual-overlay p {
        font-size: 1rem;
    }

    .statement-text-overlay blockquote {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
    }
}