/* =========================
    Global
   ========================= */
body {
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #222;
}

.layout-wrapper {
  display: flex;
  min-height: 100vh;
}

/* =========================
    Sidebar
   ========================= */
.sidebar {
  width: 250px;
  background-color: #2c2c2c;
  color: white;
  padding: 0px;
}

.sidebar p, .sidebar li, .sidebar h4 {
  color: white;
  margin: 8px 0;
}

.sidebar h4 {
  margin-top: 20px;
  color: orange;
  font-size: 1em;
}

.sidebar ul {
  list-style: none;
  padding-left: 15px;
}

.sidebar li {
  margin-bottom: 8px;
}

/* =========================
    Navigation
   ========================= */
.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  gap: 30px;
  background-color: #333;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.05em;
  padding: 10px 15px;
  transition: background 0.3s, color 0.3s;
  border-radius: 5px;
}

.menu a:hover {
  background-color: #eee;
  color: #007b5e;
}

/* =========================
    Logo Title
   ========================= */
.logo-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px 0;;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.logo-title h1 {
   font-size: 5em;
  font-weight: 900;
  letter-spacing: 50px;
  margin: 0; /* Reset default margin */
  color: black;
}

.logo-title p {
  margin: 5px 0 0;
  font-size: 1.6em;
  color: #333;
  font-style: italic;
}

.logo-img {
  height: 120px;
  width: 200px;
}

/* =========================
    Main Content
   ========================= */
.main-content {
  flex: 1;
  padding: 0;
}

/* =========================
    Welcome Section
   ========================= */
.welcome {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 0px;
}

.welcome h2 {
  font-size: 2em;
  color: #2d6a4f;
  margin-bottom: 0px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}

/* =========================
    Product Section
   ========================= */
.product {
  background: linear-gradient(to right, #fff, #ffe4b5);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0px;
}

.product h3 {
  font-size: 1.8em;
  color: #c95f00;
  margin-bottom: 0px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.image-container {
  flex: 1 1 300px;
}

.product-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.text-container {
  flex: 1 1 300px;
}

.benefits {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.1em;
  color: #333;
}

.benefits li {
  margin-bottom: 0px;
}

/* =========================
    Responsive
   ========================= */
@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
  }

  .text-container,
  .image-container {
    width: 100%;
  }

  .logo-title {
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px,0px,40px,0px; /* Remove top margin */
  border-bottom: 2px solid #ccc;
  padding-bottom: 0px;
  }

  .logo-img {
    margin-top: 0px;
  }
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

