:root {
    --primary-color: #d4a59a;
    --primary-dark: #b8867d;
    --secondary-color: #6b5b5a;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #faf8f7;
    --bg-white: #ffffff;
    --border-color: #e8e5e3;
    --success-color: #4CAF50;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 20px;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 0;
    display: block;
}

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    background: var(--bg-light);
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

.intro-offset {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.intro-text-block {
    padding: 40px 30px;
    background: var(--bg-white);
}

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

.intro-text-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image-block {
    margin-top: 40px;
}

.intro-image-block img {
    width: 100%;
    border-radius: 8px;
}

.why-us-alternating {
    background: var(--bg-light);
    padding: 80px 20px;
}

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

.feature-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
}

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

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

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.services-pricing {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-pricing h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-info {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.testimonials-wave {
    background: var(--bg-light);
    padding: 80px 20px;
}

.testimonials-wave h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial-item {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-left-content {
    padding: 40px 30px;
    background: var(--bg-light);
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-icon {
    color: var(--success-color);
    font-size: 20px;
    font-weight: 700;
}

.form-right {
    padding: 40px 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta-button {
    display: block;
    background: var(--bg-white);
    color: var(--primary-color);
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.sticky-cta-button:hover {
    transform: scale(1.02);
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie-reject:hover {
    border-color: var(--bg-white);
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
}

.story-block {
    margin-bottom: 60px;
}

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

.story-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-full {
    margin: 60px 0;
}

.story-image-full img {
    width: 100%;
    border-radius: 8px;
}

.values-split {
    background: var(--bg-light);
    padding: 80px 20px;
}

.value-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.value-content {
    padding: 40px 30px;
}

.value-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.value-visual {
    width: 100%;
}

.value-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

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

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

.team-bio {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 40px 30px;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-duration {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-includes {
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 16px;
    color: var(--text-light);
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

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

.service-info-block {
    background: var(--bg-light);
    padding: 80px 20px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

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

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

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

.service-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--primary-color);
}

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

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

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

.contact-map-block {
    width: 100%;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: var(--bg-white);
    padding: 15px 20px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.how-to-find {
    background: var(--bg-light);
    padding: 80px 20px;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.thanks-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.thanks-next-steps {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-page {
    padding: 80px 20px;
}

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

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

.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(--text-dark);
}

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

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

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

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

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

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        border: none;
    }

    .nav-menu li {
        margin: 0 0 0 35px;
    }

    .nav-menu a {
        padding: 0;
    }

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

    .hero-left,
    .hero-right {
        width: 50%;
    }

    .hero-left {
        padding: 80px 50px;
    }

    .hero-right {
        min-height: auto;
    }

    .intro-offset {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .intro-text-block {
        flex: 1;
    }

    .intro-image-block {
        flex: 1;
        margin-top: 0;
    }

    .feature-row {
        flex-direction: row;
        align-items: center;
    }

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

    .feature-image,
    .feature-text {
        width: 50%;
    }

    .feature-image img {
        height: 400px;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .testimonials-flex {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-item {
        width: calc(50% - 15px);
    }

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

    .form-left-content,
    .form-right {
        width: 50%;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        width: 30%;
    }

    .sticky-cta {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .value-row {
        flex-direction: row;
        align-items: center;
    }

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

    .value-content,
    .value-visual {
        width: 50%;
    }

    .value-visual img {
        height: 400px;
    }

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

    .team-member {
        width: calc(33.333% - 27px);
    }

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

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

    .service-detail-image {
        width: 45%;
        height: auto;
        min-height: 400px;
    }

    .service-detail-content {
        width: 55%;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        width: calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info-block {
        width: 45%;
    }

    .contact-map-block {
        width: 55%;
    }

    .map-placeholder {
        height: 500px;
    }

    .transport-options {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .transport-item {
        width: calc(33.333% - 20px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .service-card {
        width: calc(33.333% - 20px);
    }

    .testimonial-item {
        width: calc(33.333% - 20px);
    }
}