/* General Layout */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Classic Dark Navbar */
.Header__navbar {
    background-color: #2c3e50; /* Deep classic blue/grey */
    padding: 15px 0;
    color: #ffffff;
    border-bottom: 3px solid #1a252f;
}

.Header__container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* Logo Styling */
.Header__logo {
    margin-right: 30px;
}

.Header__logo img {
    height: 35px;
    vertical-align: middle;
}

/* Classic Menu Items */
.Header__menuList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.Header__tabsTab {
    padding: 0 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.Header__tabsTab a, 
.Header__tabsTab {
    color: #ecf0f1;
    text-decoration: none;
}

.Header__tabsTab:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Classic Search/Hero Section */
.Header__searchSection {
    background-color: #f4f4f4;
    padding: 50px 0;
    border-bottom: 1px solid #cccccc;
    text-align: center;
}

.Header__searchTitle {
    font-family: "Times New Roman", Times, serif; /* Classic Serif Font */
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.Header__description {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
}

/* Responsive Clearfix for older floats */
.Header__clBoth {
    clear: both;
}

/* Simple Button Style for Search (if applicable) */
button, .search-button {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #34495e;
}
