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

.container {
    width: 80%;
    margin: 0 auto;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px; /* Spacing between banner and nav */
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #444;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a,
.dropdown-content span {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content span {
    font-weight: bold;
    font-style: italic;
    padding-top: 10px;
}

.dropdown-content a:hover {
    background-color: #555;
}

.description-wrapper {
    margin: 20px; /* Add margin to keep text away from page edges */
}

.telescope-image {
    width: 300px; /* Adjust the size as necessary */
    float: left;
    margin: 0 20px 20px 0; /* Margin around the image for text spacing */
    padding: 10px; /* Padding around the image */
    border: 1px solid #ddd; /* Optional border for visual separation */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional shadow for added effect */
}

.description-wrapper p {
    text-align: justify;
}
