/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2c7a3d;
    color: #fff;
}

.btn-accept:hover {
    background-color: #235c31;
}

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

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

/* Navigation */
.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3d;
}

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

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c7a3d;
}

.ad-label {
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f9f9f9;
}

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

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

.hero-right {
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #2c7a3d;
    color: #fff;
}

.cta-primary:hover {
    background-color: #235c31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 61, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #2c7a3d;
    border: 2px solid #2c7a3d;
}

.cta-secondary:hover {
    background-color: #2c7a3d;
    color: #fff;
}

.cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    background-color: #2c7a3d;
    color: #fff;
}

.cta-large:hover {
    background-color: #235c31;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 61, 0.3);
}

/* Intro Section */
.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.intro-image {
    flex: 1;
}

.intro-content {
    flex: 1;
}

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

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

/* Value Split Section */
.value-split {
    display: flex;
    background-color: #f9f9f9;
}

.value-content {
    flex: 1;
    padding: 5rem 4rem;
}

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

.value-list {
    margin-bottom: 2.5rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c7a3d;
}

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

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

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

/* Experience Section */
.experience-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

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

.exp-card {
    flex: 1;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.exp-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.exp-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.exp-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    background-color: #f9f9f9;
}

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

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

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
}

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

.testimonial-block {
    margin-bottom: 3rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #2c7a3d;
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.booking-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-content {
    flex: 1.2;
}

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

.booking-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.booking-image {
    flex: 0.8;
}

/* Form Styles */
.booking-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c7a3d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #235c31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 61, 0.3);
}

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.info-left {
    flex: 1;
}

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

.info-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.info-right {
    flex: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: #2c7a3d;
    color: #fff;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-large {
    background-color: #fff;
    color: #2c7a3d;
}

.cta-section .cta-large:hover {
    background-color: #f0f0f0;
    color: #1a5a28;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c7a3d;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.75rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2c7a3d;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c7a3d 0%, #1a5a28 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Pages */
.services-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

.services-intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

/* Service Catalog */
.services-catalog {
    background-color: #f9f9f9;
}

.service-item {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: 3rem;
}

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

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3d;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

.btn-service {
    padding: 0.875rem 2rem;
    background-color: #2c7a3d;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #235c31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 61, 0.3);
}

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

/* Services CTA */
.services-cta {
    padding: 5rem 2rem;
    background-color: #2c7a3d;
    text-align: center;
    color: #fff;
}

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

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

.services-cta .cta-primary {
    background-color: #fff;
    color: #2c7a3d;
}

.services-cta .cta-primary:hover {
    background-color: #f0f0f0;
}

/* About Page */
.about-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.about-intro-content {
    flex: 1;
}

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

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

.about-intro-image {
    flex: 1;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.values-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.team-image {
    flex: 1;
}

.team-content {
    flex: 1;
}

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

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

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-content {
    flex: 1.2;
}

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

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

.approach-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.approach-list li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    list-style: disc;
}

.approach-image {
    flex: 0.8;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.commitment-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.commitment-split {
    display: flex;
    gap: 4rem;
}

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

.commitment-split p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.commitment-split ul {
    padding-left: 1.5rem;
}

.commitment-split li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    list-style: disc;
}

/* Impact Section */
.impact-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.impact-image {
    flex: 1;
}

.impact-content {
    flex: 1;
}

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

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

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background-color: #2c7a3d;
    text-align: center;
    color: #fff;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-about .cta-primary {
    background-color: #fff;
    color: #2c7a3d;
}

.cta-about .cta-primary:hover {
    background-color: #f0f0f0;
}

/* Contact Page */
.contact-main {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c7a3d;
}

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

.contact-note {
    background: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid #2c7a3d;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

/* Contact Approach */
.contact-approach {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.approach-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.approach-card p {
    color: #555;
    line-height: 1.7;
}

/* Visit Section */
.visit-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.visit-image {
    flex: 1;
}

.visit-content {
    flex: 1;
}

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

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

/* Response Section */
.response-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

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

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

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

.faq-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background-color: #2c7a3d;
    text-align: center;
    color: #fff;
}

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

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

.contact-cta .cta-primary {
    background-color: #fff;
    color: #2c7a3d;
}

.contact-cta .cta-primary:hover {
    background-color: #f0f0f0;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.thanks-content {
    flex: 2;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c7a3d;
}

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

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

.steps-list {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.step-content p {
    color: #555;
    line-height: 1.6;
}

.thanks-note {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2c7a3d;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-note p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c7a3d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #235c31;
}

.btn-secondary {
    background-color: transparent;
    color: #2c7a3d;
    border: 2px solid #2c7a3d;
}

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

.thanks-sidebar {
    flex: 1;
}

.sidebar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.sidebar-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link-small {
    color: #2c7a3d;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-small:hover {
    color: #1a5a28;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c7a3d;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
    list-style: disc;
}

.legal-section a {
    color: #2c7a3d;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #1a5a28;
    text-decoration: underline;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .testimonial-split,
    .intro-wrapper,
    .booking-wrapper,
    .info-split,
    .services-intro-wrapper,
    .about-intro-split,
    .team-split,
    .approach-wrapper,
    .impact-wrapper,
    .contact-split,
    .visit-wrapper,
    .thanks-container {
        flex-direction: column;
    }

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

    .experience-grid,
    .values-grid,
    .approach-grid,
    .commitment-split {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-left {
        padding: 3rem 2rem;
    }

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

    .intro-content h2,
    .value-content h2,
    .experience-header h2,
    .testimonial-content h2,
    .booking-content h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .ad-label {
        font-size: 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 0.75rem 1.5rem;
    }

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

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}