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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation */
.nav-horizontal {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c17c74;
}

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

.nav-links a {
    font-weight: 500;
    color: #2d2d2d;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: #c17c74;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: #c17c74;
    color: #ffffff;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #a86960;
    transform: translateY(-2px);
}

/* Hero Split */
.hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #faf8f7 0%, #f5f0ee 100%);
}

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

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    background: #c17c74;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c17c74;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #c17c74;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #c17c74;
}

.btn-primary:hover {
    background: #a86960;
    border-color: #a86960;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193,124,116,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2d2d2d;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2d2d2d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2d2d2d;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #c17c74;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #c17c74;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #c17c74;
    color: #ffffff;
}

.btn-primary-small {
    background: #c17c74;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-secondary-small {
    background: transparent;
    color: #2d2d2d;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #2d2d2d;
}

/* Intro Offset */
.intro-offset {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.intro-small {
    flex: 0 0 35%;
}

.intro-small h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-large {
    flex: 1;
}

.intro-large p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

/* Features Split Alternate */
.features-split-alternate {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.feature-row-reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-label {
    display: block;
    color: #c17c74;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #c17c74;
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

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

.feature-image img {
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.service-card-featured {
    background: linear-gradient(135deg, #c17c74 0%, #a86960 100%);
    color: #ffffff;
    position: relative;
}

.service-card-featured h3,
.service-card-featured .service-price,
.service-card-featured p,
.service-card-featured li {
    color: #ffffff;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c17c74;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c17c74;
    font-weight: 700;
}

.service-card-featured .service-features li::before {
    color: #ffffff;
}

.service-cta {
    display: block;
    text-align: center;
    background: #c17c74;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-featured .service-cta {
    background: #ffffff;
    color: #c17c74;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Stacked */
.testimonials-stacked {
    padding: 6rem 2rem;
    background: #faf8f7;
}

.testimonials-stacked h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-rating {
    color: #f4b860;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* CTA Visual Split */
.cta-visual-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.cta-split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 12px;
    overflow: hidden;
}

.cta-left {
    flex: 1;
    min-width: 300px;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    flex: 1;
    min-width: 300px;
    padding: 4rem;
    background: #fafafa;
}

.cta-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-right > p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Form Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c17c74;
}

.reservation-form button {
    margin-top: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    color: #c17c74;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c17c74;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: #c17c74;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    min-width: 250px;
    margin: 0;
}

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

/* Page Hero Styles */
.page-hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #faf8f7 0%, #f5f0ee 100%);
}

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

.page-hero-left {
    flex: 1;
    min-width: 300px;
}

.page-breadcrumb {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.page-hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.page-hero-left p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.page-hero-right {
    flex: 1;
    min-width: 300px;
}

.page-hero-right img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.page-hero-centered p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Story Split */
.story-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.story-image img {
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Values Grid */
.values-grid {
    padding: 6rem 2rem;
    background: #fafafa;
}

.values-grid h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f0ee;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Team Split Layout */
.team-split-layout {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-split-layout h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.team-member-row {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.team-row-reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 0 0 280px;
}

.team-image img {
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    display: block;
    color: #c17c74;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-specialties {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.specialty-tag {
    background: #f5f0ee;
    color: #c17c74;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Studio Environment */
.studio-environment {
    padding: 5rem 2rem;
    background: #fafafa;
}

.environment-content {
    max-width: 1400px;
    margin: 0 auto;
}

.environment-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.environment-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.environment-text {
    flex: 1;
    min-width: 300px;
}

.environment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.environment-image img {
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* CTA Banner Simple */
.cta-banner-simple {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #c17c74 0%, #a86960 100%);
    text-align: center;
    color: #ffffff;
}

.cta-banner-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-simple p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-banner-simple .btn-primary {
    background: #ffffff;
    color: #c17c74;
    border-color: #ffffff;
}

.cta-banner-simple .btn-primary:hover {
    background: #f5f0ee;
}

/* Services Categories */
.services-categories {
    padding: 4rem 2rem;
    background: #ffffff;
}

.category-section {
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.category-header {
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-item {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-item-highlight {
    background: linear-gradient(135deg, #f5f0ee 0%, #faf8f7 100%);
    border: 2px solid #c17c74;
}

.service-item-premium {
    background: linear-gradient(135deg, #c17c74 0%, #a86960 100%);
    color: #ffffff;
}

.service-item-premium h3,
.service-item-premium .service-price-large,
.service-item-premium p,
.service-item-premium li,
.service-item-premium .service-duration {
    color: #ffffff;
}

.service-badge-premium {
    background: rgba(255,255,255,0.2);
}

.service-item-small {
    flex-direction: row;
    padding: 2rem;
}

.service-item-content {
    flex: 1;
    min-width: 300px;
}

.service-item-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #c17c74;
}

.service-item-content > p {
    color: #666;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.service-includes {
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c17c74;
    font-weight: 700;
}

.service-item-premium .service-includes li::before {
    color: #ffffff;
}

.service-duration {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.service-item-action {
    flex: 0 0 auto;
}

.btn-service {
    display: inline-block;
    background: #c17c74;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

/* Pricing Info Split */
.pricing-info-split {
    padding: 4rem 2rem;
    background: #fafafa;
}

.pricing-info-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.pricing-info-left {
    flex: 1;
    min-width: 300px;
}

.pricing-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-list li {
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c17c74;
    font-size: 1.5rem;
}

.pricing-info-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Banner Split */
.cta-banner-split {
    padding: 4rem 2rem;
    background: #ffffff;
}

.cta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #c17c74 0%, #a86960 100%);
    padding: 4rem;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-banner-text {
    flex: 1;
    min-width: 250px;
}

.cta-banner-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.cta-banner-text p {
    font-size: 1.1rem;
}

.cta-banner-action {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-banner-action .btn-primary {
    background: #ffffff;
    color: #c17c74;
    border-color: #ffffff;
}

.cta-banner-action .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-banner-action .btn-outline:hover {
    background: #ffffff;
    color: #c17c74;
}

/* Contact Split Layout */
.contact-split-layout {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: #c17c74;
    font-weight: 600;
}

.contact-note {
    color: #999;
    font-size: 0.95rem;
    margin-top: 0.8rem;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.hours-table td {
    color: #555;
}

.hours-table td:last-child {
    font-weight: 600;
}

.transport-list {
    margin-top: 1rem;
}

.transport-list li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual-side {
    flex: 1;
    min-width: 300px;
}

.contact-image-block {
    margin-bottom: 2rem;
}

.contact-image-block img {
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.highlight-text p {
    color: #666;
}

/* Map Section */
.map-section {
    padding: 4rem 2rem;
    background: #fafafa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: linear-gradient(135deg, #f5f0ee 0%, #faf8f7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: #555;
}

.map-overlay p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-instruction {
    font-size: 1rem;
    color: #999;
}

/* FAQ Contact */
.faq-contact {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #faf8f7 0%, #f5f0ee 100%);
    min-height: 70vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #c17c74;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-info-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

.thanks-service-info {
    background: #f5f0ee;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    display: none;
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c17c74;
    margin-bottom: 0.5rem;
}

.service-note {
    color: #666;
}

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

.thanks-contact-reminder {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.thanks-contact-reminder strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-contact-reminder p {
    color: #666;
}

.thanks-contact-reminder a {
    color: #c17c74;
    font-weight: 600;
}

/* Thanks Tips */
.thanks-tips {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.tips-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.tip-card {
    flex: 1;
    min-width: 250px;
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tip-card p {
    color: #666;
    line-height: 1.7;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: #555;
    list-style: disc;
}

.legal-content a {
    color: #c17c74;
    font-weight: 600;
}

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

.legal-content strong {
    color: #1a1a1a;
}

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

.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 #eee;
}

.gdpr-table th,
.cookies-table th {
    background: #fafafa;
    font-weight: 600;
    color: #1a1a1a;
}

.gdpr-table td,
.cookies-table td {
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-split-content,
    .feature-row,
    .intro-wrapper,
    .cta-split-content,
    .story-row,
    .team-member-row,
    .environment-split,
    .pricing-info-content,
    .contact-container,
    .page-hero-content {
        flex-direction: column;
    }

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

    .feature-text h3,
    .story-text h2 {
        font-size: 1.8rem;
    }

    .intro-small,
    .intro-large {
        flex: 1;
    }

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

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

    .btn-service {
        display: block;
        width: 100%;
    }

    .cta-banner-content {
        flex-direction: column;
    }

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

    .team-image {
        flex: 0 0 200px;
    }

    .cta-banner-action {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-action .btn-primary,
    .cta-banner-action .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
    }
}

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

    .services-header h2,
    .testimonials-stacked h2,
    .values-grid h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 1rem;
    }
}
