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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.main-nav {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.split-section {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.highlight-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 20px;
}

.highlight-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--bg-white);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-item.selected {
    border-color: var(--secondary-color);
    background: #fff;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-item .price {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.select-service {
    padding: 12px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: var(--secondary-color);
}

.testimonial-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.booking-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    margin-right: 16px;
}

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

.inline-link {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: var(--transition);
}

.inline-link:hover {
    border-bottom-color: var(--primary-color);
}

.why-section,
.practical-section,
.story-section,
.values-section {
    padding: 100px 20px;
}

.why-section h2,
.practical-section h2,
.story-section h2,
.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.why-section p,
.story-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.info-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.sticky-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

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

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-header {
    background: var(--bg-light);
    padding: 100px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.services-section {
    padding: 60px 20px 100px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.services-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.service-detailed {
    margin-bottom: 80px;
}

.service-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-info .duration {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.included {
    list-style: none;
    margin: 24px 0;
}

.included li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

.included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-cta-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.booking-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-cta-section .cta-button {
    background: var(--bg-white);
    color: var(--primary-color);
}

.booking-cta-section .cta-button:hover {
    background: var(--bg-light);
}

.team-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 24px;
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member .role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

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

.value-item {
    max-width: 800px;
    margin: 0 auto 48px;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-section {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-button {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.cta-section .cta-button:hover {
    background: var(--bg-light);
}

.contact-section {
    padding: 60px 20px 100px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form-section {
    flex: 1;
}

.contact-item {
    margin-bottom: 48px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item .small {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 8px;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-form-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-form-section .note {
    padding: 16px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin-top: 24px;
}

.faq-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.map-section {
    padding: 60px 20px;
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.map-section p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section {
    padding: 60px 20px 100px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.confirmation-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.confirmation-box .large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.confirmation-box p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.confirmation-list {
    list-style: none;
    margin: 24px 0;
}

.confirmation-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.confirmation-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-display {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

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

.step p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    padding-top: 8px;
}

.additional-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.additional-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.additional-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.additional-info ul {
    list-style: none;
}

.additional-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.additional-info ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-page {
    padding: 40px 20px 100px;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.legal-page ul {
    margin: 16px 0 24px 32px;
}

.legal-page ul li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-page strong {
    color: var(--text-dark);
}

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .service-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .service-info {
        padding: 60px 32px;
    }

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

    .split-content h2 {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .team-grid {
        flex-direction: column;
    }

    .feature-card,
    .testimonial,
    .team-member,
    .info-block {
        flex: 1 1 100%;
    }

    .contact-grid {
        flex-direction: column;
        gap: 48px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .split-content h2,
    .page-header h1 {
        font-size: 1.75rem;
    }

    .highlight-section h2,
    .testimonial-section h2,
    .team-section h2,
    .values-section h2 {
        font-size: 2rem;
    }

    .hero-content,
    .split-content,
    .service-info {
        padding: 40px 24px;
    }

    .feature-card,
    .testimonial,
    .team-member {
        padding: 32px 24px;
    }

    .sticky-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .cta-button-secondary {
        margin-right: 0;
        margin-bottom: 12px;
    }
}
