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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Asymmetric Navigation */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: #f39c12;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

/* Hero Asymmetric */
.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #546e7a;
    line-height: 1.7;
}

.cta-hero {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-hero:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    transform: rotate(3deg);
    z-index: 1;
    background: #ecf0f1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

/* Intro Offset Section */
.intro-offset {
    display: flex;
    gap: 5%;
    padding: 8% 8%;
    align-items: center;
    background: #ffffff;
}

.intro-text-block {
    flex: 1.3;
}

.intro-text-block h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

.intro-visual-card {
    flex: 1;
    transform: translateY(-40px);
    background: #e8f4f8;
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* Services Asymmetric Grid */
.services-asymmetric {
    padding: 6% 5%;
    background: #f8f9fa;
}

.services-header-diagonal {
    margin-bottom: 4rem;
    transform: skewY(-1deg);
    background: #3498db;
    padding: 3rem 5%;
    color: #ffffff;
}

.services-header-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    transform: skewY(1deg);
}

.services-header-diagonal p {
    font-size: 1.2rem;
    transform: skewY(1deg);
    opacity: 0.95;
}

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

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

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
}

.service-offset {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(50px);
}

.service-small {
    flex: 1 1 calc(33% - 1.5rem);
}

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

.service-tall {
    flex: 1 1 calc(33% - 1.5rem);
}

.service-corner {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(-30px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

/* Process Diagonal Section */
.process-diagonal {
    display: flex;
    gap: 6%;
    padding: 8% 6%;
    background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 5% 0;
}

.process-content-left,
.process-image-right {
    transform: skewY(2deg);
}

.process-content-left {
    flex: 1.2;
}

.process-content-left h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 2rem;
}

.process-step h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #f39c12;
    border-radius: 50%;
}

.process-step p {
    padding-left: 2rem;
    opacity: 0.92;
    line-height: 1.7;
}

.process-image-right {
    flex: 1;
}

.process-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Form Section Overlap */
.form-section-overlap {
    padding: 6% 5%;
    background: #ffffff;
    position: relative;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(-5%);
}

.form-container-asymmetric h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container-asymmetric > p {
    margin-bottom: 2rem;
    color: #546e7a;
}

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

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.booking-form input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Benefits Stacked */
.benefits-stacked {
    padding: 6% 8%;
    background: #2c3e50;
    color: #ffffff;
}

.benefits-stacked h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-layout-mixed {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-large,
.benefit-small,
.benefit-medium,
.benefit-offset {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-large {
    flex: 1 1 calc(55% - 1rem);
}

.benefit-small {
    flex: 1 1 calc(45% - 1rem);
}

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

.benefit-offset {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(30px);
}

.benefits-layout-mixed h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefits-layout-mixed p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 5% 1rem;
}

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

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

/* About Page Styles */
.about-hero-offset {
    display: flex;
    gap: 5%;
    padding: 6% 8%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    align-items: center;
}

.about-text-main {
    flex: 1.2;
}

.about-text-main h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-main p {
    font-size: 1.3rem;
    color: #546e7a;
    line-height: 1.7;
}

.about-image-corner {
    flex: 1;
    transform: rotate(-3deg) translateY(20px);
    background: #b2dfdb;
}

.about-image-corner img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.story-irregular {
    display: flex;
    gap: 6%;
    padding: 7% 8%;
    background: #ffffff;
}

.story-block-left {
    flex: 1.3;
}

.story-block-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #546e7a;
    line-height: 1.8;
}

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

.story-image-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.values-asymmetric {
    padding: 6% 5%;
    background: #f5f7fa;
}

.values-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-large {
    flex: 1 1 calc(60% - 1rem);
}

.value-small {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(50px);
}

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

.value-corner {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(-40px);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.team-diagonal {
    padding: 6% 8%;
    background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    transform: skewY(-2deg);
}

.team-intro,
.team-content {
    transform: skewY(2deg);
}

.team-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
    opacity: 0.92;
}

.approach-offset {
    padding: 6% 8%;
    background: #ffffff;
}

.approach-offset h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-layout-mixed {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.approach-item:nth-child(even) {
    transform: translateX(30px);
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.approach-item p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-section-about {
    padding: 6% 5%;
    background: #34495e;
}

.cta-content-diagonal {
    text-align: center;
    transform: skewY(-1deg);
    padding: 3rem;
}

.cta-content-diagonal h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    transform: skewY(1deg);
}

.cta-content-diagonal p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transform: skewY(1deg);
}

.btn-cta-about {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    transform: skewY(1deg);
}

.btn-cta-about:hover {
    background: #2980b9;
    transform: skewY(1deg) translateY(-3px);
}

/* Services Page */
.services-hero-diagonal {
    padding: 5% 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    transform: skewY(-2deg);
}

.services-hero-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: skewY(2deg);
}

.services-hero-diagonal p {
    font-size: 1.3rem;
    transform: skewY(2deg);
}

.services-detailed {
    padding: 4% 5%;
    background: #ffffff;
}

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

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

.service-detail-image-left,
.service-detail-image-right {
    flex: 1;
}

.service-detail-image-left img,
.service-detail-image-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.service-detail-content-right,
.service-detail-content-left {
    flex: 1.2;
}

.service-detail-content-right h2,
.service-detail-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content-right p,
.service-detail-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.service-detail-content-right h3,
.service-detail-content-left h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
}

.service-detail-content-right ul,
.service-detail-content-left ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content-right li,
.service-detail-content-left li {
    margin-bottom: 0.6rem;
    color: #546e7a;
    line-height: 1.6;
}

.booking-section-services {
    padding: 5% 5%;
    background: #f8f9fa;
}

.booking-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(5%);
}

.booking-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-container-offset > p {
    margin-bottom: 2rem;
    color: #546e7a;
}

.faq-asymmetric {
    padding: 6% 8%;
    background: #ffffff;
}

.faq-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-layout-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 8px;
}

.faq-item:nth-child(odd) {
    transform: translateY(-20px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* Contact Page */
.contact-hero-offset {
    padding: 5% 8%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

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

.contact-hero-offset p {
    font-size: 1.3rem;
}

.contact-content-asymmetric {
    display: flex;
    gap: 6%;
    padding: 6% 8%;
    background: #ffffff;
}

.contact-info-diagonal {
    flex: 1.3;
}

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-image-overlap {
    flex: 1;
    transform: rotate(2deg) translateY(30px);
    background: #e1f5fe;
}

.contact-image-overlap img {
    width: 100%;
    border-radius: 10px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.location-section {
    padding: 5% 8%;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.location-info-offset {
    display: flex;
    gap: 5%;
    align-items: center;
}

.location-text {
    flex: 1.2;
}

.location-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.contact-questions-asymmetric {
    padding: 6% 8%;
    background: #ffffff;
}

.contact-questions-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.questions-layout-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
}

.question-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 8px;
}

.question-item:nth-child(even) {
    transform: translateX(20px);
}

.question-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.question-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero-centered {
    padding: 8% 5%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps-asymmetric {
    padding: 6% 8%;
    background: #ffffff;
}

.next-steps-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.steps-layout-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background: #f5f7fa;
    border-radius: 10px;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-item p {
    color: #546e7a;
    line-height: 1.7;
}

.preparation-info-diagonal {
    padding: 5% 8%;
    background: #34495e;
    color: #ffffff;
    transform: skewY(-1deg);
}

.preparation-content {
    transform: skewY(1deg);
    max-width: 900px;
    margin: 0 auto;
}

.preparation-info-diagonal h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

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

.preparation-content ul {
    padding-left: 1.5rem;
}

.preparation-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cta-return {
    padding: 6% 5%;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.btn-cta-secondary {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Legal Pages */
.legal-hero {
    padding: 5% 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.legal-content {
    padding: 5% 8%;
    background: #ffffff;
}

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

.legal-text h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 0.8rem;
    color: #34495e;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
    color: #546e7a;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-text li {
    margin-bottom: 0.6rem;
    color: #546e7a;
    line-height: 1.7;
}

.legal-text a {
    color: #3498db;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.cookie-table th {
    background: #f5f7fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image-overlap {
        width: 50%;
        right: 0;
    }

    .service-large,
    .service-offset,
    .service-wide {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-small,
    .service-tall,
    .service-corner {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

    .nav-menu {
        gap: 1rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
    }

    .hero-content-offset {
        max-width: 100%;
        padding: 5%;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .intro-offset,
    .story-irregular,
    .process-diagonal,
    .contact-content-asymmetric,
    .location-info-offset,
    .about-hero-offset {
        flex-direction: column;
    }

    .intro-visual-card,
    .story-image-right,
    .about-image-corner {
        transform: none;
    }

    .service-large,
    .service-offset,
    .service-small,
    .service-wide,
    .service-tall,
    .service-corner {
        flex: 1 1 100%;
        transform: none;
    }

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

    .benefit-large,
    .benefit-small,
    .benefit-medium,
    .benefit-offset {
        flex: 1 1 100%;
        transform: none;
    }

    .value-large,
    .value-small,
    .value-medium,
    .value-corner {
        flex: 1 1 100%;
        transform: none;
    }

    .faq-item,
    .question-item,
    .step-item,
    .approach-item {
        flex: 1 1 100%;
        transform: none;
    }

    .form-container-asymmetric,
    .booking-container-offset {
        transform: none;
    }

    .footer-content-irregular {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cta-buttons-group {
        flex-direction: column;
    }
}

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

    .about-text-main h1,
    .thanks-content h1,
    .legal-hero h1 {
        font-size: 2rem;
    }

    .services-header-diagonal h2,
    .benefits-stacked h2,
    .values-asymmetric h2 {
        font-size: 2rem;
    }
}