:root {
  --primary-color: rgb(56, 90, 245);
  --primary-gradient: linear-gradient(90deg, rgb(56, 90, 245), rgb(115, 139, 255));
  --text-primary: rgb(30, 58, 83);
  --text-title: rgb(30, 58, 83);
  --border-radius-card: 20px;
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
  --spacing-section: 70px;
  --spacing-card: 30px;
}

/* #region Hero */

.mdHero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    flex-direction: column;
    position: relative;
    min-height: 75vh;
    overflow: hidden;
    display: flex;
    width: 100%;
}

.mdHero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(7, 39, 180, 0.8), rgba(19, 49, 185, 0.9));
  top: -100px;
  right: -100px;
  z-index: 1;
}

.mdHero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(7, 39, 180, 0.8), rgba(19, 49, 185, 0.9));
  bottom: -50px;
  left: -50px;
  z-index: 1;
}

.mdHeroShapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.mdHeroShape1 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(17, 51, 202, 0.9);
  border-radius: 15px;
  top: 20%;
  right: 15%;
  transform: rotate(25deg);
  animation: float 8s ease-in-out infinite;
}

.mdHeroShape2 {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(17, 51, 202, 0.9);
  border-radius: 10px;
  bottom: 20%;
  left: 10%;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite 1s;
}

.mdHeroShape3 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(17, 51, 202, 0.2);
  border-radius: 8px;
  top: 30%;
  left: 20%;
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(25deg);
  }
  50% {
    transform: translateY(-20px) rotate(35deg);
  }
  100% {
    transform: translateY(0) rotate(25deg);
  }
}

.mdHeroArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 100px);
  z-index: 102;
  padding: 40px 0;
  position: relative;
}

.mdHeroContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 20px;
}

.mdLeftHero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  max-width: 600px;
}

.mdHeroBadge {
  display: inline-block;
  background-color: rgba(56, 90, 245, 0.0);
}

.mdText1 {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.mdHeroHeading {
  margin-bottom: 10px;
}

.mdHeadingMain {
  color: var(--text-primary);
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.mdHeadingHighlight {
  color: var(--primary-color);
  font-weight: 800;
}

.mdSearchArea {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.mdSearchInputWrapper {
  position: relative;
  width: 100%;
}

.mdSearchIcon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(29, 79, 218, 0.5);
  font-size: 16px;
}

.searchArea {
  height: 60px;
  width: 100%;
  padding: 20px 20px 20px 50px;
  border: 1px solid rgba(29, 79, 218, 0.2);
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(27, 110, 219, 0.1);
  background-color: white;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.searchArea:focus {
  outline: none;
  border: 1px solid rgba(29, 79, 218, 0.5);
  box-shadow: 0 4px 20px rgba(27, 110, 219, 0.2);
  transform: translateY(-2px);
}

.mdPopularSearches {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 10px;
}

.mdPopularLabel {
  font-size: 14px;
  color: rgba(30, 58, 83, 0.7);
  font-weight: 500;
}

.mdPopularTags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mdTag {
  display: inline-block;
  padding: 5px 12px;
  background-color: rgba(56, 90, 245, 0.08);
  border-radius: 15px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mdTag:hover {
  background-color: rgba(56, 90, 245, 0.15);
  transform: translateY(-2px);
}

.mdRightHero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mdHeroImageWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mdHeroRightImg {
  max-height: 500px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease;
}

.mdHeroRightImg:hover {
  transform: translateY(-10px);
}

.mdHeroStats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.mdStatItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mdStatNumber {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.mdStatLabel {
  font-size: 14px;
  color: rgba(30, 58, 83, 0.7);
  font-weight: 500;
}

/* #endregion */

/* #region Active E-Tender Categories Section */

.mdIhaleCategoriesContainer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.mdActiveIhaleSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
}

.mdIhaleArea {
  display: flex;
  flex-direction: column;
  width: 72%;
  gap: 30px;
  padding: 20px;
}

.mdTenderCategoryCard {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.mdCategoryLink {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid rgba(59, 130, 246, 0.06);
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-style: preserve-3d;
}

.mdCategoryLink:hover {
  transform: translateY(-12px) rotateX(5deg);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 
    0 24px 48px rgba(59, 130, 246, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.mdCategoryLink::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mdCategoryLink:hover::after {
  transform: scaleX(1);
}

.mdCategoryHeader {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.mdCategoryImageWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mdImageOverlay {
  display: none;
}

.mdCategoryImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.1);
}

.mdCategoryLink:hover .mdCategoryImg {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.2) contrast(1.2) saturate(1.3);
}

.mdCategoryBadge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.mdCategoryLink:hover .mdCategoryBadge {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mdTenderCount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.mdTenderLabel {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mdCategoryInfo {
  padding: 1.5rem;
  background: #ffffff;
  position: relative;
}

.mdCategoryTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.mdCategoryLink:hover .mdCategoryTitle {
  color: #3b82f6;
}

.mdCategoryMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.mdMetaItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.mdMetaItem i {
  color: #3b82f6;
  font-size: 0.9rem;
}

.mdActionArrow {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}

.mdCategoryLink:hover .mdActionArrow {
  transform: translateX(4px) scale(1.1);
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.mdTextArea {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
}

.mdTextArea .mdMainTitle {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-title);
  background: linear-gradient(90deg, var(--text-primary), var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.mdTextArea .mdMainTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 6px;
  height: 35px;
  background: var(--primary-gradient);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(56, 90, 245, 0.2);
}

/* #endregion */

/* #region HelpSection */

.mdHelpSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(10px);
}

.mdHelpArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72%;
  gap: 50px;
}

.mdHelpTitle {
  text-align: center;
}

.mdHelpTitle h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.mdHelpTitle p {
  font-size: 16px;
  color: rgba(30, 58, 83, 0.7);
}

.mdHelpCards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.mdHelpCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  width: calc(50% - 15px);
  transition: all 0.3s ease;
}

.mdHelpCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 90, 245, 0.15);
}

.mdHelpCard h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.mdHelpCard p {
  font-size: 15px;
  color: rgba(30, 58, 83, 0.7);
  line-height: 1.6;
}

.mdHelpButton {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.mdHelpButton:hover {
  background: rgb(33, 70, 236);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(56, 90, 245, 0.2);
}

/* #endregion */

/* #region InfoSection */

.mdInfoSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--spacing-section) 0;
  background: white;
}

.mdInfoArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72%;
  gap: 50px;
}

.mdInfoCards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.mdInfoCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px;
  background: white;
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: calc(33.33% - 20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mdInfoCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
}

.mdInfoCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 90, 245, 0.15);
}

.mdInfoIcon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mdInfoIcon i {
  font-size: 32px;
  color: var(--primary-color);
}

.mdInfoCard h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.mdInfoCard p {
  font-size: 15px;
  color: rgba(30, 58, 83, 0.7);
  line-height: 1.6;
  margin-bottom: 15px;
}

.mdInfoButton {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.mdInfoButton:hover {
  color: rgb(33, 70, 236);
  gap: 10px;
}

.mdInfoButton i {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* #endregion */

/* #region Responsive - Dashboard Standards */

/* #region 4K displays */

@media (min-width: 2560px) {
  .mdHeroContent {
    max-width: 1600px;
    gap: 60px;
  }
  
  .mdHeadingMain {
    font-size: 3.5rem;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 65%;
    max-width: 1800px;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(20% - 24px);
  }
  
  .mdInfoCard {
    width: calc(25% - 22.5px);
  }
}

/* #endregion */

/* #region Full HD+ */

@media (min-width: 1920px) and (max-width: 2559px) {
  .mdHeroContent {
    max-width: 1500px;
    gap: 50px;
  }
  
  .mdHeadingMain {
    font-size: 3rem;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 70%;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(20% - 24px);
  }
}

/* #endregion */

/* #region Laptop L */

@media (min-width: 1440px) and (max-width: 1919px) {
  .mdHeroContent {
    gap: 40px;
  }
  
  .mdHeadingMain {
    font-size: 2.8rem;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(25% - 15px);
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 75%;
  }
}

/* #endregion */

/* #region Laptop */

@media (min-width: 1366px) and (max-width: 1599px) {
  .mdHeroContent {
    gap: 30px;
  }
  
  .mdHeadingMain {
    font-size: 2.5rem;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(25% - 15px);
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 80%;
  }
}

/* #endregion */

/* #region Desktop */

@media (min-width: 1200px) and (max-width: 1365px) {
  .mdHeroContent {
    gap: 20px;
  }
  
  .mdHeadingMain {
    font-size: 2.2rem;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(33.33% - 14px);
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 85%;
  }
  
  .mdHelpCards, .mdInfoCards {
    flex-wrap: wrap;
  }
  
  .mdInfoCard {
    width: calc(50% - 15px);
  }
}

/* #endregion */

/* #region Tablet L */

@media (min-width: 892px) and (max-width: 1199px) {
  .mdHeroContent {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .mdLeftHero {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  
  .mdRightHero {
    display: none !important;
  }
  
  .mdHeroStats {
    display: none !important;
  }
  
  .mdHeroImageWrapper {
    display: none !important;
  }
  
  .mdHeadingMain {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .mdSearchArea {
    margin-top: 2rem;
    width: 100%;
  }
  
  .mdSearchInputWrapper {
    max-width: 100%;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mdTenderCategoryCard {
    max-width: 100%;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 95%;
  }
  
  .mdHelpCards, .mdInfoCards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mdHelpCard {
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
  }
  
  .mdInfoCard {
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
  }
}

/* #endregion */

/* #region Tablet */

@media (min-width: 768px) and (max-width: 891px) {
  .mdHeroContent {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .mdLeftHero {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  
  .mdRightHero {
    display: none !important;
  }
  
  .mdHeroStats {
    display: none !important;
  }
  
  .mdHeroImageWrapper {
    display: none !important;
  }
  
  .mdHeadingMain {
    font-size: 2rem;
    text-align: center;
  }
  
  .mdSearchArea {
    margin-top: 2rem;
    width: 100%;
  }
  
  .mdSearchInputWrapper {
    max-width: 100%;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mdTenderCategoryCard {
    max-width: 100%;
  }
  
  .mdHelpCards, .mdInfoCards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mdHelpCard {
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
  }
  
  .mdInfoCard {
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
  }
}

/* #endregion */

/* #region Mobile L */

@media (max-width: 891px) {
  .mdHeroContent {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .mdLeftHero {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  
  .mdRightHero {
    display: none !important;
  }
  
  .mdHeroStats {
    display: none !important;
  }
  
  .mdHeroImageWrapper {
    display: none !important;
  }
  
  .mdSearchArea {
    margin-top: 2rem;
    width: 100%;
  }
  
  .mdSearchInputWrapper {
    max-width: 100%;
  }
  
  .mdHeadingMain {
    font-size: 1.8rem;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .mdTenderCategoryCard {
    max-width: 100%;
  }
  
  .mdHelpCards, .mdInfoCards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mdCategoryHeader {
    height: 160px;
  }
  
  .mdCategoryInfo {
    padding: 1.2rem;
  }
  
  .mdIhaleCardContainer {
    justify-content: center;
  }
  
  .mdInfoCard {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .mdHelpCard {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .mdTextArea .mdMainTitle {
    font-size: 26px;
  }
  
  .mdTextArea .mdSubTitle {
    font-size: 16px;
  }
  
  .mdHelpTitle h2 {
    font-size: 26px;
  }
}

/* #endregion */

/* #region Mobile S */

@media (max-width: 413px) {
  .mdHero {
    min-height: auto;
  }
  
  .mdHeroArea {
    min-height: auto;
    padding: 30px 0;
  }
  
  .mdHeroContent {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .mdLeftHero {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  
  .mdRightHero {
    display: none !important;
  }
  
  .mdHeroStats {
    display: none !important;
  }
  
  .mdHeroImageWrapper {
    display: none !important;
  }
  
  .mdHeadingMain {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .searchArea {
    height: 48px;
    font-size: 14px;
    padding: 15px 15px 15px 45px;
  }
  
  .mdSearchIcon {
    left: 15px;
    font-size: 16px;
  }
  
  .mdSearchArea {
    margin-top: 2rem;
    width: 100%;
  }
  
  .mdSearchInputWrapper {
    max-width: 100%;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 98%;
    padding: 5px;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .mdTenderCategoryCard {
    max-width: 100%;
  }
  
  .mdTag {
    padding: 3px 6px;
    font-size: 11px;
  }
  
  .mdHelpCard, .mdInfoCard {
    padding: 15px;
  }
  
  .mdHelpCard h3, .mdInfoCard h3 {
    font-size: 18px;
  }
  
  .mdHelpCard p, .mdInfoCard p {
    font-size: 13px;
  }
}

/* #endregion */

/* #region Mobile */

@media (max-width: 768px) {
  .mdHero {
    min-height: auto;
  }
  
  .mdHeroArea {
    min-height: auto;
    padding: 30px 0;
  }
  
  .mdHeadingMain {
    font-size: 1.6rem;
  }
  
  .searchArea {
    height: 50px;
    font-size: 14px;
  }
  
  .mdStatNumber {
    font-size: 22px;
  }
  
  .mdStatLabel {
    font-size: 12px;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 95%;
    padding: 10px;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  
  .mdTenderCategoryCard {
    max-width: 100%;
  }
  
  .mdCategoryHeader {
    height: 140px;
  }
  
  .mdTag {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .mdHelpCard, .mdInfoCard {
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .mdHelpCard h3, .mdInfoCard h3 {
    font-size: 20px;
  }
  
  .mdHelpCard p, .mdInfoCard p {
    font-size: 14px;
  }
}

/* #endregion */

/* #region Ultra-wide displays optimization */

@media (min-width: 3840px) {
  .mdHeroContent {
    max-width: 2200px;
    gap: 80px;
  }
  
  .mdHeadingMain {
    font-size: 4rem;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 60%;
    max-width: 2400px;
  }
  
  .mdIhaleCategoriesContainer {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
  }
  
  .mdCategoryHeader {
    height: 240px;
  }
  
  .mdInfoCard {
    width: calc(20% - 24px);
  }
}

/* #endregion */

/* #endregion */