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

:root {
    --primary-color: #2d5c3f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d5c3f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: 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;
}

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

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

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

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

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

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

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

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 92, 63, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #6f593a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
}

.btn-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 38px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

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

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.features-alternating {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.feature-row {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    align-items: center;
}

.feature-row:last-child {
    margin-bottom: 0;
}

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

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

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

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

.feature-text {
    flex: 1;
    padding: 60px;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-preview {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-icon {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
    height: 200px;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    color: #234a31;
    transform: translateX(5px);
}

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

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

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

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column a {
    color: #cccccc;
    font-size: 15px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.btn-cookie-accept:hover {
    background-color: #234a31;
}

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

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 20px;
}

.service-block {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    gap: 60px;
    align-items: center;
}

.service-block:last-child {
    margin-bottom: 0;
}

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

.service-block-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-block-content {
    flex: 1;
}

.service-block-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-block-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted var(--border-color);
    margin: 0 10px 5px 10px;
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.about-intro {
    padding: 80px 0;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.about-text-side {
    flex: 1;
    padding: 0 40px;
}

.about-text-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.about-image-side {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

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

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.philosophy-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-main {
    padding: 80px 20px;
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-side > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(45, 92, 63, 0.95);
    color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
}

.transport-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.transport-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.transport-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.transport-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.transport-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.transport-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
}

.transport-item p:last-child {
    margin-bottom: 0;
}

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

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

.thankyou-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
    max-width: 700px;
    text-align: center;
}

.thankyou-icon {
    margin: 0 auto 30px auto;
}

.thankyou-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thankyou-submessage {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

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

.thankyou-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thankyou-info ul {
    list-style: disc;
    list-style-position: inside;
    text-align: left;
    display: inline-block;
}

.thankyou-info li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thankyou-contact {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thankyou-contact p {
    font-size: 16px;
    margin-bottom: 10px;
}

.thankyou-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.thankyou-contact a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    font-weight: 500;
}

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

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

    .hero-content-left {
        padding: 60px 40px;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

    .hero-image-right {
        min-height: 400px;
    }

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

    .feature-text {
        padding: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 20px);
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 20px);
    }

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

    .about-text-side {
        padding: 0 20px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .transport-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px 0;
    }

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

    .nav-menu li {
        padding: 12px 30px;
    }

    .hero-content-left {
        padding: 50px 30px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-content-left p {
        font-size: 17px;
    }

    .intro-section h2,
    .services-preview h2,
    .testimonials-section h2,
    .cta-section h2,
    .values-section h2,
    .team-section h2 {
        font-size: 32px;
    }

    .feature-text {
        padding: 30px 20px;
    }

    .feature-text h3 {
        font-size: 26px;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .service-block-content h2 {
        font-size: 28px;
    }

    .value-card,
    .team-member {
        flex: 1 1 100%;
    }

    .thankyou-container h1 {
        font-size: 32px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-page h2 {
        font-size: 24px;
    }
}

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

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 15px;
    }

    .intro-section,
    .services-preview,
    .testimonials-section,
    .cta-section,
    .values-section,
    .team-section,
    .philosophy-section,
    .faq-section {
        padding: 60px 20px;
    }

    .features-alternating {
        padding: 60px 0;
    }

    .feature-row {
        margin-bottom: 50px;
    }
}
