
/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2d3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    background-color: #4caf50;
    overflow: hidden;
    text-align: center; /* Center the navigation menu */
}

nav a {
    display: inline-block;  /* Make links inline-block for centering */
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #45a049;
}

/* Dropdown Menu Styles */
.dropdown {
    display: inline-block;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: #4caf50;
    cursor: pointer;
}

.dropdown:hover .dropbtn {
    background-color: #45a049;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

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

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Section */
.content {
    margin: 20px;
}

.section-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.section-description {
    font-size: 18px;
    color: #666;
}

/* Footer and Visit Counter */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
}
