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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafbfc;
}

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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    font-size: 16px;
    color: #2c3e50;
}

.nav-right a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    position: relative;
    background-color: #e8f5e9;
    overflow: hidden;
}

.hero-content-offset {
    padding: 60px 40px 30px;
    max-width: 650px;
    margin-left: 8%;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #34495e;
    font-weight: 300;
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    z-index: 1;
    transform: rotate(-3deg);
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-offset {
    display: flex;
    flex-direction: column;
    padding: 80px 40px 60px;
    position: relative;
}

.intro-text-block {
    max-width: 580px;
    margin-left: 15%;
    font-size: 24px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 40px;
}

.intro-image-overlap {
    width: 70%;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -80px;
}

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

.values-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 90px 40px;
}

.values-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 50px;
    margin-left: 10%;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-card {
    background-color: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 6px;
    max-width: 550px;
}

.value-card.offset-1 {
    margin-left: 5%;
}

.value-card.offset-2 {
    margin-left: 35%;
}

.value-card.offset-3 {
    margin-left: 18%;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #27ae60;
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.services-intro-left {
    max-width: 600px;
    margin-left: 8%;
}

.services-intro-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.services-intro-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-link {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-link:hover {
    background-color: #219150;
}

.services-cards-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    margin-right: 10%;
    max-width: 500px;
}

.service-mini-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.service-mini-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
}

.price-tag {
    display: block;
    padding: 0 25px 20px;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.experience-section {
    background-color: #f4f6f8;
    padding: 70px 40px;
}

.experience-overlap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-overlap img {
    width: 100%;
    border-radius: 10px;
}

.experience-text-overlay {
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
    max-width: 520px;
    position: relative;
    margin-top: -120px;
    margin-left: 7%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.experience-text-overlay h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1e3a2e;
}

.experience-text-overlay p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.booking-section-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 50px;
}

.booking-visual-left {
    width: 100%;
    max-width: 450px;
    margin-left: 5%;
}

.booking-visual-left img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.booking-form-right {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    max-width: 550px;
    margin-left: auto;
    margin-right: 8%;
}

.booking-form-right h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1e3a2e;
}

.booking-form .form-group {
    margin-bottom: 22px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #34495e;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d8e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #27ae60;
}

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #219150;
}

.testimonials-offset {
    padding: 90px 40px;
    background-color: #e8f5e9;
}

.testimonials-offset h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e3a2e;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial.offset-left {
    margin-left: 5%;
}

.testimonial.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial .author {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.location-section {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
}

.location-content {
    max-width: 550px;
    margin-bottom: 40px;
    margin-left: 12%;
}

.location-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.location-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.location-cta {
    display: inline-block;
    background-color: #34495e;
    color: #fff;
    padding: 13px 30px;
    border-radius: 5px;
    font-weight: 600;
}

.location-cta:hover {
    background-color: #2c3e50;
}

.location-image {
    width: 85%;
    margin-left: auto;
}

.location-image img {
    border-radius: 8px;
}

.main-footer {
    background-color: #1e3a2e;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #bdc3c7;
}

.footer-col a:hover {
    color: #27ae60;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44,62,80,0.97);
    color: #ecf0f1;
    padding: 25px 40px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    gap: 20px;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #219150;
}

.cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    padding: 12px 30px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.about-hero {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    padding: 100px 40px;
    text-align: center;
}

.about-hero-text h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 15px;
}

.about-hero-text p {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 80px 40px;
}

.story-block {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.story-block img {
    width: 100%;
    border-radius: 10px;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.mission-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    background-color: #f4f6f8;
    gap: 50px;
}

.mission-text-left {
    max-width: 600px;
    margin-left: 5%;
}

.mission-text-left h2 {
    font-size: 40px;
    margin-bottom: 22px;
    color: #1e3a2e;
}

.mission-text-left p {
    font-size: 18px;
    line-height: 1.7;
}

.mission-values-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    margin-right: 8%;
    max-width: 550px;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e3a2e;
}

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

.team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.5;
}

.achievements {
    background-color: #e8f5e9;
    padding: 80px 40px;
}

.achievements h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a2e;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.achievement-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 12px;
}

.achievement-item p {
    font-size: 18px;
    color: #34495e;
}

.philosophy-section {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
}

.philosophy-content {
    max-width: 650px;
    margin-left: 10%;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: 22px;
    color: #1e3a2e;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.philosophy-image {
    width: 90%;
    margin-left: auto;
}

.philosophy-image img {
    border-radius: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #1e3a2e 0%, #27ae60 100%);
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.main-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #27ae60;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
}

.main-cta-btn:hover {
    background-color: #ecf0f1;
}

.services-hero {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    padding: 90px 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
}

.services-intro {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
}

.intro-left {
    width: 100%;
}

.intro-left img {
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.intro-right {
    max-width: 600px;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.intro-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.services-grid {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.service-btn:hover {
    background-color: #219150;
}

.booking-section {
    background-color: #f4f6f8;
    padding: 80px 40px;
}

.booking-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a2e;
}

.booking-form-centered {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-centered .form-group {
    margin-bottom: 22px;
}

.booking-form-centered label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #34495e;
}

.booking-form-centered input,
.booking-form-centered select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d8e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form-centered input:focus,
.booking-form-centered select:focus {
    outline: none;
    border-color: #27ae60;
}

.additional-info {
    padding: 80px 40px;
}

.additional-info h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a2e;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    background-color: #f4f6f8;
    padding: 30px;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-hero {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    padding: 90px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
}

.contact-content {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 50px;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

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

.contact-map-right img {
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.map-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.faq-section {
    background-color: #f4f6f8;
    padding: 80px 40px;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a2e;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.sustainability-note {
    padding: 70px 40px;
}

.note-content {
    background-color: #e8f5e9;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.note-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1e3a2e;
}

.note-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.thanks-info {
    margin: 30px 0;
    padding: 25px;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.thanks-info p {
    font-size: 16px;
}

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

.thanks-btn {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
}

.thanks-btn:hover {
    background-color: #219150;
}

.thanks-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 14px 32px;
    border: 2px solid #27ae60;
    border-radius: 5px;
    font-weight: 600;
}

.thanks-btn-secondary:hover {
    background-color: #27ae60;
    color: #fff;
}

.thanks-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-image img {
    border-radius: 10px;
}

.legal-content {
    padding: 60px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #219150;
}

.contact-info {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .hero-asymmetric {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-content-offset {
        padding: 80px 40px;
    }

    .intro-offset {
        flex-direction: row;
        align-items: flex-start;
    }

    .intro-text-block {
        margin-bottom: 0;
    }

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

    .value-card {
        flex: 1 1 45%;
    }

    .services-preview {
        flex-direction: row;
    }

    .services-intro-left {
        flex: 1;
    }

    .services-cards-right {
        flex: 1;
    }

    .booking-section-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .testimonial-cards {
        flex-direction: row;
        gap: 30px;
    }

    .testimonial {
        flex: 1;
    }

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

    .location-content {
        flex: 1;
        margin-bottom: 0;
    }

    .location-image {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .story-block img {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }

    .mission-asymmetric {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .team-member {
        flex: 1 1 30%;
    }

    .achievements-list {
        flex-direction: row;
    }

    .achievement-item {
        flex: 1;
    }

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

    .philosophy-content {
        flex: 1;
    }

    .philosophy-image {
        flex: 1;
        width: auto;
    }

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

    .intro-left {
        flex: 1;
    }

    .intro-right {
        flex: 1;
    }

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

    .service-image {
        width: 45%;
    }

    .service-image img {
        height: 100%;
    }

    .service-content {
        flex: 1;
    }

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

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

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

    .faq-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 48%;
    }

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

    .thanks-content {
        flex: 1;
        text-align: left;
    }

    .thanks-image {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
    }
}