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

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.navbar {
    background: #fff;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f2d;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5f2d;
}

.nav-cta {
    background: #2c5f2d;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #234d24;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8ede8 100%);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.btn-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #2c5f2d;
}

.btn-primary:hover {
    background: #234d24;
    border-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #2c5f2d;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow:hover::after {
    margin-left: 1rem;
}

.tours-grid {
    padding: 5rem 2rem;
    background: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.tours-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tour-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    height: 250px;
    overflow: hidden;
}

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

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-content {
    padding: 2rem;
}

.tour-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tour-card-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-duration {
    font-size: 0.95rem;
    color: #888;
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5f2d;
    padding: 0.8rem 2rem;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.why-split {
    display: flex;
    align-items: stretch;
}

.why-content {
    flex: 1;
    padding: 5rem 4rem;
    background: #f5f7f5;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c5f2d;
}

.why-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.why-image {
    flex: 1;
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #2c5f2d;
    padding: 1rem 2.5rem;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2c5f2d;
    color: #fff;
}

.testimonials {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: #888;
}

.booking-split {
    display: flex;
    align-items: stretch;
}

.booking-image {
    flex: 1;
}

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

.booking-form-container {
    flex: 1;
    padding: 5rem 4rem;
    background: #f5f7f5;
}

.booking-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.booking-form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.form-group textarea {
    resize: vertical;
}

.booking-form button[type="submit"] {
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.cta-banner {
    background: linear-gradient(135deg, #2c5f2d 0%, #234d24 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #e8ede8;
    margin-bottom: 2rem;
}

.btn-primary-inverse {
    display: inline-block;
    background: #fff;
    color: #2c5f2d;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-inverse:hover {
    background: #f5f7f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

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

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

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

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

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background: #333;
}

.page-header {
    background: linear-gradient(135deg, #f5f7f5 0%, #e8ede8 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image-large {
    flex: 1;
    min-width: 45%;
}

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

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

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header-row h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    flex: 1;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.service-meta-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 1rem;
    background: #f5f7f5;
    border-radius: 5px;
}

.service-description p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
    line-height: 1.8;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-description ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-description li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

.service-info .btn-primary {
    align-self: flex-start;
    margin-top: 2rem;
}

.services-cta {
    background: linear-gradient(135deg, #2c5f2d 0%, #234d24 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: #e8ede8;
    margin-bottom: 2rem;
}

.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: #2c5f2d;
}

.about-intro-split {
    display: flex;
    align-items: stretch;
}

.about-text {
    flex: 1;
    padding: 5rem 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

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

.about-philosophy {
    padding: 5rem 2rem;
    background: #fafafa;
}

.about-philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.philosophy-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-team-split {
    display: flex;
    align-items: stretch;
}

.about-team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
}

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

.team-text {
    flex: 1;
    padding: 5rem 4rem;
    background: #f5f7f5;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-difference {
    padding: 5rem 2rem;
    background: #fff;
}

.about-difference h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.difference-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.difference-col {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 10px;
}

.difference-col.highlight {
    background: linear-gradient(135deg, #f5f7f5 0%, #e8ede8 100%);
    border: 2px solid #2c5f2d;
}

.difference-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.difference-list {
    list-style: none;
}

.difference-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.difference-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.about-values {
    padding: 5rem 2rem;
    background: #fafafa;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2c5f2d;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-cta-split {
    display: flex;
    align-items: center;
}

.cta-text {
    flex: 1;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #234d24 100%);
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: #e8ede8;
    margin-bottom: 2rem;
}

.cta-text .btn-primary {
    background: #fff;
    color: #2c5f2d;
}

.cta-text .btn-primary:hover {
    background: #f5f7f5;
    border-color: #fff;
}

.cta-image {
    flex: 1;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-block a {
    color: #2c5f2d;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2rem;
}

.map-overlay p {
    margin: 0;
    line-height: 1.7;
}

.contact-faq {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    background: linear-gradient(135deg, #2c5f2d 0%, #234d24 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #e8ede8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-info {
    background: #f5f7f5;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.7rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-contact {
    font-size: 1.1rem;
    color: #555;
}

.thanks-contact a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-page {
    padding: 3rem 2rem 5rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.3rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-container strong {
    color: #1a1a1a;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

.gdpr-table thead,
.cookies-table thead {
    background: #f5f7f5;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #2c5f2d;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #555;
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background: #fafafa;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-split,
    .booking-split,
    .about-intro-split,
    .about-team-split,
    .about-cta-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .why-content,
    .booking-form-container,
    .about-text,
    .team-text,
    .cta-text,
    .contact-info,
    .service-info {
        padding: 3rem 2rem;
    }

    .hero-image,
    .intro-image,
    .why-image,
    .booking-image,
    .about-image,
    .team-image,
    .cta-image,
    .contact-map,
    .service-image-large {
        min-height: 300px;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2,
    .about-philosophy h2,
    .about-values h2,
    .contact-faq h2 {
        font-size: 2.2rem;
    }

    .tour-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

    .nav-links {
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .tour-card,
    .testimonial-card,
    .philosophy-item,
    .value-card,
    .faq-item,
    .difference-col {
        flex: 1 1 100%;
    }

    .tours-container,
    .testimonials-container,
    .philosophy-grid,
    .values-grid,
    .faq-grid,
    .difference-container {
        gap: 1.5rem;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .service-header-row {
        flex-direction: column;
    }

    .service-header-row h2 {
        font-size: 1.8rem;
    }

    .service-price-large {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}
