/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f5f7;
    color: #333;
}

/* Header Navbar */
.Header__navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.Header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo */
.Header__logo img {
    height: 40px;
    width: auto;
}

/* Company Name */
.Header__name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 1rem;
    color: #1d1d1f;
}

/* Navigation Menu */
.Header__menuTab {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.Header__menuList {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.Header__tabsTab {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.Header__tabsTab:hover {
    color: #0078d4;
    border-bottom: 2px solid #0078d4;
    padding-bottom: 2px;
}

/* Right-side Menu Icons */
.Header__menuicon {
    display: flex;
    align-items: center;
}

.Header__menuBoxMain {
    display: inline-block;
    cursor: pointer;
}

.Header__menu {
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.Header__menu::before,
.Header__menu::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
}

.Header__menu::before {
    top: -8px;
}

.Header__menu::after {
    top: 8px;
}

.Header__clBoth {
    clear: both;
}

/* Header Content */
.Header__searchSection {
    background-color: #eef1f5;
    padding: 3rem 1rem;
    text-align: center;
}

.Header__searchSection .Header__container {
    max-width: 800px;
    margin: auto;
}

.Header__searchTitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.Header__description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .Header__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .Header__menuList {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .Header__menuTab {
        width: 100%;
    }

    .Header__name {
        margin: 0.5rem 0;
    }
}

