/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom Pastel Green Background */
body {
    background-color: #e8f5e9; /* Pastel green */
    color: #2c3e50; /* Dark charcoal gray text - great contrast */
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* REMOVE ALL PARAGRAPH SPACING */
p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Header & Navigation */
header {
    background-color: #2e7d32; /* Deeper green for header */
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    flex: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    color: #1b5e20; /* Dark green for headings */
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #34495e;
}

/* Image Styling */
.featured-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

/* List Styling */
.content-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: #1b5e20;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    border-bottom: 3px solid #81c784;
    padding-bottom: 0.5rem;
}

/* Unordered List */
ul.features-list {
    list-style-type: none;
    padding-left: 1rem;
}

ul.features-list li {
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

ul.features-list li:before {
    content: "✓";
    color: #2e7d32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Ordered List */
ol.tour-steps {
    padding-left: 2rem;
    margin: 1rem 0; /* Reduced from 1.5rem */
}

ol.tour-steps li {
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    padding-left: 1rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1.5rem 0; /* Reduced from 2rem */
    margin-top: 2rem; /* Reduced from 3rem */
}

/* Contact Form Styles (for contact.html) */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 1.5rem; /* Reduced from 2rem */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2e7d32;
    outline: none;
}

.submit-btn {
    background-color: #2e7d32;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #1b5e20;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 0 15px;
    }
}