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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --accent-color: #8b4f39;
    --dark-color: #1a1a1a;
    --light-color: #f8f6f3;
    --text-color: #333;
    --border-color: #e0ddd9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 1rem 0;
}

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

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

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: #ccc;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem;
    background: var(--light-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-right {
    padding: 0;
    overflow: hidden;
}

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

.intro-asymmetric {
    padding: 5rem 2rem;
    background: #fff;
}

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

.intro-text {
    flex: 1.2;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.service-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-info p {
    color: #666;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

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

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

.trust-left {
    overflow: hidden;
}

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

.trust-right {
    padding: 4rem 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.inline-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.inline-cta:hover {
    text-decoration: underline;
}

.testimonials {
    padding: 5rem 2rem;
    background: var(--light-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1 1 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

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

.process-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.process-container h2 {
    margin-bottom: 3rem;
}

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

.step {
    flex: 1 1 220px;
    padding: 2rem 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.order-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem;
}

.form-left {
    background: var(--primary-color);
    color: #fff;
}

.form-left h2,
.form-left p {
    color: #fff;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    padding: 0.7rem 0;
    font-size: 1.1rem;
}

.contact-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: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.form-privacy {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
}

.final-cta-content h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--light-color);
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.thanks-left {
    flex: 1;
    padding: 3rem;
}

.thanks-right {
    flex: 1;
    overflow: hidden;
}

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

.service-confirmation {
    padding: 1rem;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
}

.page-hero-content h1,
.page-hero-content p {
    color: #fff;
}

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.story-text {
    flex: 1.3;
}

.story-image {
    flex: 0.7;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-color);
    text-align: center;
}

.values-section h2 {
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
}

.team-section {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

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

.team-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.team-member h3 {
    margin-bottom: 0.3rem;
}

.team-member p {
    color: #666;
}

.philosophy-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.philosophy-left {
    flex: 0.8;
}

.philosophy-right {
    flex: 1.2;
}

.philosophy-left img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2,
.cta-content p {
    color: #fff;
}

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

.services-detail {
    padding: 5rem 2rem;
    background: #fff;
}

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

.intro-left {
    flex: 1;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-visual {
    flex: 1;
    height: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-description {
    flex: 1;
    padding: 3rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-includes {
    margin: 1.5rem 0;
    list-style: none;
    margin-left: 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

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

.extras-section {
    padding: 5rem 2rem;
    background: var(--light-color);
    text-align: center;
}

.extras-section h2 {
    margin-bottom: 3rem;
}

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

.extra-card {
    flex: 1 1 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.extra-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(44, 95, 79, 0.9);
    color: #fff;
}

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

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.visit-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.visit-image {
    flex: 1;
}

.visit-content {
    flex: 1;
}

.visit-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.visit-benefits {
    list-style: none;
    margin-left: 0;
}

.visit-benefits li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.visit-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.transport-section {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.transport-section h2 {
    margin-bottom: 3rem;
}

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

.transport-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.transport-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

.legal-page {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-container h2 {
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    margin-top: 1.5rem;
    color: var(--accent-color);
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #ccc;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

    .hero-left,
    .hero-right,
    .trust-left,
    .trust-right {
        min-height: 400px;
    }

    .intro-content,
    .story-container,
    .philosophy-content-split,
    .services-intro-split,
    .contact-split,
    .visit-container {
        flex-direction: column;
    }

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

    .service-visual {
        width: 100%;
        height: 300px;
    }

    .form-container-split {
        flex-direction: column;
    }

    .thanks-container {
        flex-direction: column;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-left,
    .trust-right,
    .form-left,
    .form-right,
    .thanks-left,
    .service-description {
        padding: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid,
    .extras-grid,
    .transport-grid {
        flex-direction: column;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }
}