/* Base Styles */
:root {
    --primary-color: #2e8b57;
    --secondary-color: #f7c331;
    --accent-color: #f05f40;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #1a2a36;
    --border-color: #ddd;
    --border-radius: 5px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 80px;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #236e44;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #e0b12e;
    color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

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

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

.logo img {
    height: 60px;
    width: auto;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 30px;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a.active {
    color: var(--primary-color);
}

.main-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.main-menu i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Popular Tours Section */
.popular-tours {
    padding: 80px 0;
}

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

.tour-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.tour-card:hover {
    transform: translateY(-10px);
}

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

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tour-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 20px;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 4px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog Page Styles */
.blog-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/6.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-posts {
    padding: 60px 0;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 60px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-date, .post-category {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--accent-color);
}

/* About Page Styles */
.about-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/7.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.our-mission {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.mission-content {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 30px;
}

.mission-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.our-values {
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

.our-team {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 5px;
    text-align: center;
}

.member-position {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.member-description {
    padding: 0 20px 20px;
    color: var(--text-light);
    text-align: center;
}

.certifications {
    padding: 60px 0;
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.certification {
    text-align: center;
}

.certification img {
    height: 80px;
    width: auto;
    margin: 0 auto 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.certification:hover img {
    filter: grayscale(0%);
}

.certification p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Page Styles */
.services-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/15.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.services-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.service-category {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-category h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-category p {
    color: var(--text-light);
}

.featured-tours {
    padding: 80px 0;
}

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

.tour-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.tour-item:hover {
    transform: translateY(-5px);
}

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

.tour-content {
    padding: 20px;
    flex: 1;
}

.tour-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tour-meta span {
    margin-right: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.tour-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.tour-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.tour-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-tours {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.custom-tours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.custom-tours-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.custom-tours-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.custom-tours-features {
    margin: 20px 0;
}

.custom-tours-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.custom-tours-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.custom-tours-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.services-pricing {
    padding: 80px 0;
}

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

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: var(--bg-light);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    margin-bottom: 20px;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-card .btn {
    display: block;
    margin: 0 20px 20px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/20.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info h2, .contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-light);
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-submit {
    text-align: right;
}

.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.contact-cta .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.thank-you-message p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.modal-close-btn {
    display: inline-block;
}

/* Policy Pages */
.policy-header {
    background-color: var(--bg-light);
    padding: 120px 0 40px;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.policy-content {
    padding: 60px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.policy-intro {
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.policy-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--text-color);
}

.policy-section p, .policy-section ul, .policy-section ol {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-section ul, .policy-section ol {
    margin-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.refund-steps {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.refund-steps h3 {
    margin-top: 0;
}

.cancellation-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cancellation-table table {
    width: 100%;
    border-collapse: collapse;
}

.cancellation-table th, .cancellation-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cancellation-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.cancellation-table tr:hover {
    background-color: rgba(46, 139, 87, 0.05);
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Sitemap Page */
.sitemap-header {
    background-color: var(--bg-light);
    padding: 120px 0 40px;
    text-align: center;
}

.sitemap-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sitemap-content {
    padding: 60px 0;
}

.sitemap-section {
    margin-bottom: 40px;
}

.sitemap-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.sitemap-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.sitemap-list {
    list-style: none;
    margin-left: 30px;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.sitemap-list a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
}

.sitemap-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Rookie Mistakes Section */
.rookie-mistakes {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.mistake-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
}

.mistake-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    min-width: 50px;
}

.mistake-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.mistake-text p {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    padding: 80px 0;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

table.comparison {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

table.comparison th, table.comparison td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table.comparison th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

table.comparison tr:nth-child(even) {
    background-color: var(--bg-light);
}

table.comparison tr:hover {
    background-color: rgba(46, 139, 87, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-accept-all, .btn-customize, .btn-decline {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-accept-all:hover {
    background-color: #236e44;
}

.btn-customize {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.btn-customize:hover {
    background-color: #e0e0e0;
}

.btn-decline {
    background-color: var(--text-light);
    color: white;
}

.btn-decline:hover {
    background-color: #555;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .story-content, .custom-tours-content {
        grid-template-columns: 1fr;
    }
    
    .story-image, .custom-tours-image {
        order: -1;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-menu.active {
        transform: translateY(0);
    }
    
    .main-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tour-item {
        flex-direction: column;
    }
    
    .tour-item img {
        width: 100%;
        height: 200px;
    }
    
    .policy-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
