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

:root {
    --primary-color: #8B7355;
    --secondary-color: #2C3E50;
    --accent-color: #C19A6B;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f5f2;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 40px;
}

.nav-floating::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.nav-brand a {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.nav-menu {
    display: flex;
    gap: 45px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    margin-top: 70px;
    padding: 60px 40px;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 8%;
}

.hero-title-large {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 38px;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 45%;
    height: 70%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 80px;
    background: var(--bg-light);
}

.intro-left {
    flex: 1;
    padding-left: 10%;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.intro-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-right {
    flex: 0.9;
    position: relative;
}

.intro-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.services-asymmetric {
    padding: 120px 40px;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 12%;
    margin-bottom: 70px;
}

.section-title-creative {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 18px;
    line-height: 1.1;
}

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

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-card.offset-center {
    margin-top: 0;
}

.service-card.offset-top-right {
    margin-top: -20px;
}

.service-card.offset-left {
    margin-top: 15px;
}

.service-card.offset-bottom-right {
    margin-top: 40px;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.service-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 28px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateX(4px);
}

.why-choose-overlap {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.why-image-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
}

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

.why-content-card {
    position: relative;
    z-index: 2;
    background: white;
    padding: 60px 50px;
    margin-left: 45%;
    margin-right: 8%;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.why-content-card h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.why-list {
    margin-bottom: 32px;
}

.why-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

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

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

.testimonials-scattered {
    padding: 100px 40px;
    background: var(--bg-light);
}

.testimonials-title {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--secondary-color);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.testimonial-card.position-1 {
    align-self: flex-start;
}

.testimonial-card.position-2 {
    align-self: center;
}

.testimonial-card.position-3 {
    align-self: flex-end;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.booking-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.form-header-offset {
    margin-bottom: 50px;
    text-align: center;
}

.form-header-offset h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.form-header-offset p {
    font-size: 17px;
    color: var(--text-light);
}

.booking-form {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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);
}

.form-privacy {
    margin-bottom: 26px;
}

.form-privacy label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.btn-submit-creative {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-creative:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-overlap {
    padding: 120px 40px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.final-cta-overlap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--accent-color);
}

.footer-col-wide {
    flex: 1.5;
    min-width: 250px;
}

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

.footer-col p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.page-header-asymmetric {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.header-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.header-content-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.header-content-offset p {
    font-size: 19px;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-block.offset-right {
    flex-direction: row;
    padding-left: 5%;
}

.service-block.offset-left {
    flex-direction: row-reverse;
    padding-right: 5%;
}

.service-block.offset-center {
    flex-direction: row;
}

.service-block.offset-right-wide {
    flex-direction: row-reverse;
    padding-left: 8%;
}

.service-block.offset-center-right {
    flex-direction: row;
    padding-right: 3%;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1.2;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-features {
    margin: 28px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-features ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-features ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.btn-book-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-extra {
    padding: 60px 40px;
    background: var(--bg-light);
}

.extra-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.extra-services-header h2 {
    font-size: 38px;
    color: var(--secondary-color);
}

.extra-services-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.extra-service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
}

.extra-service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.extra-service-item p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.extra-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-services {
    padding: 80px 40px;
    background: var(--secondary-color);
}

.cta-services-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-services-content h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.cta-services-content p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.about-hero-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 120px 40px 80px;
    background: var(--bg-light);
}

.about-hero-content {
    flex: 1;
    padding-left: 8%;
}

.about-hero-content h1 {
    font-size: 58px;
    margin-bottom: 22px;
    color: var(--secondary-color);
}

.about-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.about-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-section-asymmetric {
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
}

.story-content-offset {
    flex: 1.2;
    padding-left: 10%;
}

.story-content-offset h2 {
    font-size: 42px;
    margin-bottom: 26px;
    color: var(--secondary-color);
}

.story-content-offset p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-overlap {
    flex: 1;
    position: relative;
}

.story-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.values-irregular {
    padding: 100px 40px;
    background: var(--bg-light);
}

.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-header h2 {
    font-size: 46px;
    color: var(--secondary-color);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-block {
    background: white;
    padding: 38px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    width: calc(50% - 18px);
    min-width: 300px;
}

.value-block.position-top-left {
    align-self: flex-start;
}

.value-block.position-center-right {
    align-self: center;
}

.value-block.position-bottom-left {
    align-self: flex-end;
}

.value-block.position-top-right {
    align-self: flex-start;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-showcase-offset {
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.team-image-block {
    flex: 1;
}

.team-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.team-text-block {
    flex: 1.2;
    padding-right: 8%;
}

.team-text-block h2 {
    font-size: 42px;
    margin-bottom: 26px;
    color: var(--secondary-color);
}

.team-text-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-creative {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.philosophy-content-center h2 {
    font-size: 44px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.philosophy-content-center p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.commitment-offset {
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.commitment-text {
    flex: 1.2;
    padding-left: 8%;
}

.commitment-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: var(--secondary-color);
}

.commitment-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.commitment-list {
    margin-top: 24px;
}

.commitment-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.commitment-visual {
    flex: 1;
}

.commitment-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.cta-about-creative {
    padding: 100px 40px;
    background: var(--primary-color);
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-about-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.contact-hero-asymmetric {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.contact-hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.contact-hero-text h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-hero-text p {
    font-size: 19px;
    opacity: 0.95;
}

.contact-info-offset {
    padding: 100px 40px;
}

.contact-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-block {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 27px);
    min-width: 280px;
}

.contact-block.position-left {
    align-self: flex-start;
}

.contact-block.position-right {
    align-self: flex-end;
}

.contact-block.position-center {
    align-self: center;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 22px;
    color: var(--secondary-color);
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-detail a:hover {
    color: var(--accent-color);
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
    font-size: 15px;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.map-section-creative {
    padding: 0 40px 80px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.contact-cta-offset {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.contact-cta-content h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.contact-cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.faq-asymmetric {
    padding: 100px 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 44px;
    color: var(--secondary-color);
}

.faq-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: calc(50% - 18px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

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

.thanks-section-creative {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.thanks-content-center {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content-center h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p strong {
    font-size: 18px;
    color: var(--secondary-color);
}

.thanks-steps {
    margin-top: 20px;
}

.thanks-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.service-selected {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 17px;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-extra-info {
    padding: 80px 40px;
    background: var(--bg-light);
}

.extra-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.extra-info-content h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 260px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 140px 40px 80px;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container ul li {
    list-style: disc;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--accent-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1200px) {
    .hero-title-large {
        font-size: 54px;
    }

    .hero-image-overlap {
        width: 50%;
    }
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-offset {
        padding-right: 0;
    }

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

    .hero-title-large {
        font-size: 42px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-left {
        padding-left: 0;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .why-choose-overlap {
        flex-direction: column;
        min-height: auto;
    }

    .why-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .why-content-card {
        margin-left: 0;
        margin-right: 0;
        margin-top: -60px;
    }

    .testimonial-card {
        width: 100%;
    }

    .service-block {
        flex-direction: column !important;
        padding: 0 !important;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-hero-content {
        padding-left: 0;
    }

    .story-section-asymmetric {
        flex-direction: column;
    }

    .story-content-offset {
        padding-left: 0;
    }

    .value-block {
        width: 100%;
    }

    .team-showcase-offset {
        flex-direction: column;
    }

    .team-text-block {
        padding-right: 0;
    }

    .commitment-offset {
        flex-direction: column;
    }

    .commitment-text {
        padding-left: 0;
    }

    .contact-block {
        width: 100%;
    }

    .faq-item {
        width: 100%;
    }

    .info-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 36px;
    }

    .section-title-creative {
        font-size: 38px;
    }

    .booking-form {
        padding: 30px 24px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .legal-container {
        padding: 40px 24px;
    }

    .extra-service-item {
        width: 100%;
    }
}