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

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8915f;
    --secondary-color: #2c2c2c;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f7f5;
    --bg-white: #ffffff;
    --accent-color: #e8d5c4;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
}

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

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

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

ul {
    list-style: none;
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    overflow: hidden;
}

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

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

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.intro-alternating {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-offset {
    background: var(--bg-light);
    padding: 8rem 2rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.value-card.offset-left {
    margin-left: 0;
    margin-right: 10%;
}

.value-card.offset-right {
    margin-left: 10%;
    margin-right: 0;
}

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

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

.testimonial-visual {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-split {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.testimonial-content,
.testimonial-image {
    flex: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

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

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

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

.services-header-center p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card-large {
    flex: 1;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.9rem 2.3rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.process-content {
    flex: 1.5;
}

.process-visual {
    flex: 1;
}

.process-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-item.step-right {
    flex-direction: row;
}

.step-item.step-left {
    flex-direction: row-reverse;
    text-align: right;
}

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

.step-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

.process-visual img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

.trust-elements {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

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

.trust-stat {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.gallery-showcase {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-showcase h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.gallery-split {
    display: flex;
    gap: 1.5rem;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-col img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-col img:hover {
    transform: scale(1.05);
}

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

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.booking-info,
.booking-form {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-benefits {
    list-style: none;
    margin-top: 2rem;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    background: var(--secondary-color);
    padding: 8rem 2rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.service-row {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

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

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

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

.pricing-note {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.pricing-note-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-note-content h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

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

.pricing-info-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    background: var(--secondary-color);
    padding: 6rem 2rem;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.about-hero {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.about-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

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

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

.story-block {
    flex: 1.5;
}

.story-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.story-image {
    flex: 1;
}

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

.values-detailed {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.values-detailed h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.values-layout {
    display: flex;
    gap: 3rem;
}

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

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-detailed-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.team-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-intro {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.6rem;
    margin: 1.5rem 2rem 0.5rem;
    color: var(--secondary-color);
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 2rem 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 2rem 2rem;
}

.achievements {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-content h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.achievement-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

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

.philosophy-text {
    flex: 1.3;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.about-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.contact-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.contact-main {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info-section {
    flex: 1.5;
}

.contact-visual-section {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.detail-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.detail-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.schedule-table {
    margin-top: 1rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.schedule-row .day {
    font-weight: 600;
    color: var(--text-color);
}

.schedule-row .hours {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-image-primary img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info-box ul {
    list-style: none;
}

.contact-info-box ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.contact-info-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.map-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.9);
    padding: 1.5rem;
    color: var(--bg-white);
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
}

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

.transport-item {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.transport-item p {
    color: var(--text-light);
}

.faq-contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

.contact-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 8rem 2rem;
    text-align: center;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.service-selected {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    margin-top: 2rem;
}

.service-selected p {
    margin: 0;
    color: var(--text-color);
}

#selected-service-name {
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-box {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.step-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

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

.info-text {
    flex: 1;
}

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

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

.preparation-list {
    list-style: none;
    margin-top: 1.5rem;
}

.preparation-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.preparation-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-visual {
    flex: 1;
}

.info-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.thanks-reminder {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-box {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.reminder-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.reminder-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reminder-content a {
    color: var(--primary-dark);
    font-weight: 600;
}

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

.explore-more {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-more h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.explore-grid {
    display: flex;
    gap: 3rem;
}

.explore-card {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.explore-card-content {
    padding: 2rem;
}

.explore-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.explore-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-final {
    background: var(--secondary-color);
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-final-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thanks-final-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page {
    padding: 4rem 2rem;
}

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

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

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

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

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

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-color);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .intro-block,
    .testimonial-split,
    .about-hero-split,
    .story-container,
    .philosophy-split,
    .thanks-info-split,
    .contact-layout {
        flex-direction: column;
    }

    .services-grid-split,
    .process-asymmetric,
    .booking-split,
    .values-layout,
    .team-grid,
    .transport-info,
    .explore-grid {
        flex-direction: column;
    }

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

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

    .gallery-split {
        flex-direction: column;
    }

    .step-item.step-left {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .services-header-center h2,
    .gallery-showcase h2 {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .pricing-info-grid,
    .achievement-list,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
    }
}

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

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

    .final-cta-content h2,
    .services-cta-content h2,
    .about-cta-content h2,
    .contact-cta-content h2,
    .thanks-final-content h2 {
        font-size: 2rem;
    }

    .booking-form,
    .value-card {
        padding: 2rem;
    }
}