body {
    font-family: 'Times New Roman', Times, serif; /* Clean and modern font */
    margin: 0;
    padding: 0;
    background-color: #eef2f3; /* Light background color */
}

nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    text-align: center; /* Center the navigation */
}

nav ul li {
    display: inline-block; /* Inline block for horizontal layout */
    margin: 0 15px; /* Space between links */
}

nav ul li a {
    color: #ffffff; /* White text for links */
    text-decoration: none; /* No underline */
    transition: color 0.3s; /* Smooth color transition */
}

nav ul li a:hover {
    color: #4CAF50; /* Change color on hover */
}

main {
    padding: 20px; /* Padding for main content */
}

.blog-post {
    max-width: 800px; /* Maximum width for the blog post */
    margin: 20px auto; /* Center the blog post */
    padding: 20px; /* Padding for blog post */
    background: #ffffff; /* White background for content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.blog-image {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for image */
}

h1 {
    font-size: 2.5em; /* Size for main heading */
    color: #2c3e50; /* Dark color for heading */
    text-align: center; /* Centered heading */
}

h2 {
    font-size: 1.8em; /* Size for subheadings */
    margin-top: 20px; /* Space above subheadings */
    color: #34495e; /* Darker text for subheadings */
}

p {
    font-size: 1.1em; /* Standard font size for paragraphs */
    line-height: 1.6; /* Improve readability */
    
}

ul.packing-list {
    list-style-type: square; /* Square bullets for packing list */
    padding-left: 20px; /* Indent for list */
}

ol {
    padding-left: 20px; /* Indent ordered list */
}

button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 15px; /* Padding for button */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 10px; /* Space above button */
}

button:hover {
    background-color: #45a049; /* Darker green on hover */
}

.interactive-guide {
    margin-top: 20px; /* Space above interactive guide */
    padding: 15px; /* Padding for interactive guide */
    border: 1px solid #ccc; /* Border around guide */
    border-radius: 8px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background for guide */
}
