body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Light grey background */
    color: #282c3f; /* Dark grey text */
    line-height: 1.6;
}

.main-header {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6f61; /* Coral/Orange-ish */
    text-decoration: none;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-dropdown {
    position: relative;
}

.search-dropdown button {
    padding: 10px 12px;
    border: 1px solid #d1d7dc;
    border-right: none;
    background-color: #f5f5f5;
    color: #565959;
    cursor: pointer;
    border-radius: 4px 0 0 4px;
}

.dropdown-arrow {
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #d1d7dc;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 120px;
    display: none;
    z-index: 10;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #282c3f;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

.search-bar input[type="text"] {
    padding: 10px;
    border: 1px solid #d1d7dc;
    border-radius: 0;
    width: 300px;
}

.search-bar button {
    padding: 10px 15px;
    background-color: #388e3c; /* Green for action */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.top-nav {
    display: none; /* Hide on larger screens, will show in hamburger menu */
}

.top-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.top-nav-links li {
    margin-left: 15px;
}

.top-nav-links li a {
    text-decoration: none;
    color: #565959;
    font-size: 0.9em;
}

.top-nav-links li a:hover {
    color: #ff6f61;
}

.main-nav {
    background-color: #f8f9fa; /* Light background for main nav */
    border-bottom: 1px solid #e1e4e8;
    padding: 10px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    align-items: center;
}

.hamburger {
    display: none; /* Hidden on larger screens */
    background: none;
    border: none;
    font-size: 1em;
    color: #565959;
    cursor: pointer;
    padding: 10px 15px;
    margin-right: 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li:first-child {
    margin-left: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #282c3f;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ff6f61;
}

.hero {
    background-color: #e9ecef; /* Very light grey for hero */
    padding: 30px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    border-radius: 10px;
}

.hero-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.hero-banner {
    display: flex;
    position: absolute;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    flex: 1;
    width: 100%;
    height: 100%;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.category-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


body {
    margin: 20px;
}

.subsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subsection:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.subsection img {
    width: 5em;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.subsection p {
    text-align: center;
    font-size: 0.9em;
    color: #555;
}


.category-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.category-card p {
    font-size: 0.9em;
    color: #555;
}


.hero-banner {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2em;
    color: #777;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.arrow-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.print-categories-30vw {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.print-category-30vw {
    width: 30vw;
    min-width: 150px;
    max-width: 350px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    padding: 10px;
}

.print-category-30vw img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.print-category-30vw div {
    margin-top: 8px;
    font-size: 1em;
}