/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

main {
    width: 90%;
    max-width: 1200px; /* Max width set karna achha rahega */
    margin: auto;
    padding: 20px;
}

/* Navigation Bar */
nav {
    background-color: #007BFF;
    color: white;
    padding: 15px;
    text-align: center;
}

nav h2, nav h3 {
    margin: 5px 0;
}

.part2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.part2 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.part2 a:hover {
    text-decoration: underline;
}

/* Main Content */
h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

hr {
    margin: 20px 0;
    border: 1px solid #ddd;
}

/* Destination Sections */
div {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden; /* Ensures content doesn't overflow */
}

/* Fix for images not occupying full width */
div img {
    width: 100%;  
    height: 400px; /* Fixed height for consistency */
    display: block; 
    object-fit: cover; /* Ensures the image covers the div properly */
    border-radius: 10px;
}

/* Specific Fix for Uttar Pradesh section */
.uttar-pradesh img {
    width: 100%;
    height: 400px; /* Adjust if necessary */
    object-fit: cover;
}

/* Headings */
div h3 {
    color: #007BFF;
    text-align: center;
}

div h4 {
    text-align: justify;
    color: #555;
}

/* Buttons */
div a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background: #007BFF;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

div a:hover {
    background: #0056b3;
}
