/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for boxed layout */
.container {
  max-width: 1200px;  /* Adjust box width */
  margin: 0 auto;
  padding: 0 120px 20px 120px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top Bar */
.top-bar {
  background: #c00; /* Red */
  color: #fff;
  font-size: 13px;
  padding: 10px 300px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
  font-weight: 500;
}

.social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
  background: #333;
  padding: 5px;
  border-radius: 4px;
}

/* Header Section */
.main-header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 300px 20px;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 70px;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 15px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li.active a,
.navbar ul li a:hover {
  color: #c00;
}

.navbar ul li.active a::after {
  content: "";
  display: block;
  height: 2px;
  background: #c00;
  width: 100%;
  margin-top: 4px;
}

/* Exit Button */
.exit .exit-btn {
  background: #c21b22;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.exit .exit-btn:hover {
  background: #a00;
}

/* --- Below Bar (Menu Section) --- */
.below-bar {
    background: #c21b22;
    color: #fff;
    font-size: 13px;
    padding: 20px 0px 2px 0px;
}

.below-bar a {
    color: #fff;
    margin: 0 5px;
    text-decoration: none;
    font-weight: 500;
}

/* New: Styling for the centered menu items */
.below-bar-menu ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centers the menu items horizontally */
    margin: 0;
    padding: 0;
    gap: 20px; /* Adjust spacing between menu items */
}

.below-bar-menu ul li a {
    color: #fff;
    font-size: 15px; /* Adjust font size for the menu items */
    font-weight: 600;
    text-decoration: none;
}