/* 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;
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d6e3e;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2d6e3e;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d6e3e 0%, #4a9960 100%);
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d6e3e 0%, #4a9960 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d6e3e;
    font-weight: 700;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d6e3e;
    font-weight: 600;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d6e3e;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.link-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #2d6e3e;
}

.link-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d6e3e;
}

.link-card p {
    color: #666;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-content img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d6e3e;
}

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

/* Services */
.services-overview {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.package-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d6e3e;
}

.package-details h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.package-details ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.package-details li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666;
}

/* Service Features */
.service-features {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d6e3e;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Booking Info */
.booking-info {
    padding: 80px 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.booking-details ol,
.booking-policies ul {
    padding-left: 20px;
}

.booking-details li,
.booking-policies li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.booking-details li {
    list-style: decimal;
}

.booking-policies li {
    list-style: disc;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials */
.testimonials-intro {
    background: #f8f9fa;
    padding: 60px 0;
}

.testimonials-container {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2d6e3e 0%, #4a9960 100%);
    color: white;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guest-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-card.featured .location {
    color: rgba(255, 255, 255, 0.8);
}

.tour {
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.9rem;
}

.testimonial-card.featured .tour {
    color: #ffcc80;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: #333;
}

.testimonial-card.featured .testimonial-content p {
    color: white;
}

.testimonial-footer {
    margin-top: 20px;
    text-align: right;
}

.date {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-card.featured .date {
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d6e3e;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Blog */
.blog-intro {
    background: #f8f9fa;
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.category {
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d6e3e;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #ff6b35;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #ff6b35;
}

/* Blog Categories */
.blog-categories {
    background: #f8f9fa;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d6e3e;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #2d6e3e 0%, #4a9960 100%);
    color: white;
    padding: 80px 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e55a2e;
}

/* Contact */
.contact-intro {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d6e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a2e;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #2d6e3e;
    display: block;
    margin-bottom: 5px;
}

.response-info,
.emergency-contact {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.response-info h3,
.emergency-contact h3 {
    color: #2d6e3e;
    margin-bottom: 15px;
}

.response-info ul {
    padding-left: 20px;
}

.response-info li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.location-info h4 {
    color: #2d6e3e;
    margin-bottom: 15px;
}

.location-info ul {
    padding-left: 20px;
    margin-top: 15px;
}

.location-info li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666;
}

.map-placeholder {
    background: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    opacity: 0.3;
}

/* Thanks Page */
.thanks-content {
    padding: 100px 0;
    text-align: center;
}

.thanks-message {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    opacity: 0.6;
}

.thanks-message h1 {
    font-size: 3rem;
    color: #2d6e3e;
    margin-bottom: 15px;
}

.thanks-message h2 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.thanks-details {
    text-align: left;
    margin: 50px 0;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2d6e3e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-content h4 {
    color: #2d6e3e;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.phone-number {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
    margin: 15px 0;
}

.business-hours {
    color: #666;
    font-size: 0.95rem;
}

.thanks-actions {
    margin: 60px 0;
}

.thanks-actions h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2d6e3e;
}

.action-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.action-button:hover {
    transform: translateY(-5px);
}

.action-button img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.action-button span {
    color: #2d6e3e;
    font-weight: 600;
}

.preparation-tips {
    margin: 60px 0;
}

.preparation-tips h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2d6e3e;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tip-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.tip-card h4 {
    color: #2d6e3e;
    margin-bottom: 10px;
}

.tip-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Blog Article */
.blog-article {
    padding: 40px 0 80px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #ff6b35;
    font-weight: 500;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-meta .category {
    background: #ff6b35;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-meta .date,
.article-meta .read-time {
    color: #666;
    font-size: 0.95rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2d6e3e;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.article-image {
    margin: 30px 0;
}

.article-image img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    opacity: 0.4;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.article-content h2 {
    font-size: 2rem;
    color: #2d6e3e;
    margin: 50px 0 25px;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #2d6e3e;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.3rem;
    color: #2d6e3e;
    margin: 30px 0 15px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 25px;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    color: #333;
}

.article-content ul li {
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e1e1e1;
}

.author-info,
.related-links {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.author-info h4,
.related-links h4 {
    color: #2d6e3e;
    margin-bottom: 15px;
}

.related-links ul {
    padding-left: 20px;
}

.related-links li {
    list-style: disc;
    margin-bottom: 8px;
}

.related-links a {
    color: #ff6b35;
    font-weight: 500;
}

.related-links a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.last-updated {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #666;
}

.legal-document h2 {
    font-size: 1.8rem;
    color: #2d6e3e;
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-document h3 {
    font-size: 1.4rem;
    color: #2d6e3e;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-document h4 {
    font-size: 1.2rem;
    color: #2d6e3e;
    margin: 25px 0 10px;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
}

.legal-document ul,
.legal-document ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.legal-document ul li {
    list-style: disc;
}

.legal-document ol li {
    list-style: decimal;
}

.contact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-details p {
    margin-bottom: 15px;
}

.cookie-table {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-table h4 {
    margin-bottom: 15px;
    color: #2d6e3e;
}

.cookie-table ul {
    margin: 0;
}

.cookie-table li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: #2d6e3e;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.primary {
    background: #ff6b35;
    color: white;
}

.cookie-btn.primary:hover {
    background: #e55a2e;
}

.cookie-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:not(.primary):hover {
    background: white;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .legal-document {
        padding: 30px;
    }

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

    section h2 {
        font-size: 2rem;
    }

    .thanks-message h1 {
        font-size: 2.2rem;
    }

    .thanks-message h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .legal-document {
        padding: 20px;
    }

    .feature-card,
    .value-card,
    .package-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .thanks-message h1 {
        font-size: 1.8rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }
}
