 body.dark-theme {
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Sticky Header Menu */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: #333;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}

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

.logo img {
    max-height: 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

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

/* Hero Section */
.hero {
    display: flex;
    height: 50vh;
}

.hero-left {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    color: #e0e0e0;
}

.hero-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bottom {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.category-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-nav li {
    margin: 5px 0;
}

.btn-rounded {
    display: inline-block;
    width: 100%; /* Ensures all buttons have the same width */
    max-width: 180px; /* Sets a maximum width */
    padding: 10px 20px;
    color: #fff;
    background-color: #ff5722;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 0 auto; /* Centers the button */
}

.btn-rounded:hover {
    background-color: #00e676;
}

.hero-center {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Body Section */
.main-body {
    padding: 50px 20px;
    text-align: center;
    background-color: #121212;
    color: #e0e0e0;
}

.main-body h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffeb3b; /* High contrast color for title */
}

.main-body p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Boxes Section */
.boxes {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    padding: 20px 0;
}

.box {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.box:hover {
    transform: scale(1.05);
}

.box-title {
    background-color: #ffeb3b; /* Title bar color matching the theme */
    color: #121212; /* High contrast text color */
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

/* Footer */
footer {
    background-color: #424242;
    padding: 20px;
    text-align: center;
    color: white;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffeb3b; /* Match the theme */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer ul li a {
    text-decoration: none;
    color: #ff5722; /* Colorful links matching the theme */
    font-weight: bold;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffffff; /* White on hover */
}

footer p {
    margin: 10px 0;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .boxes {
        flex-direction: column;
        align-items: center;
    }

    .box {
        margin-bottom: 20px;
    }
}