.support-layout {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  padding: 24px;
  gap: var(--SUBHEADER_FONT_SIZE);
}

.support-title {
  font-size: var(--HEADER_FONT_SIZE);
  font-weight: var(--MED_FONT_WEIGHT);
  font-family: var(--SECONDARY_FONT_FAMILY);
  color: var(--TXT_COLOR_1);
  letter-spacing: 0.3px;
}

.support-body {
  display: flex;
  flex: 1;
  gap: 24px;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: 260px;
  height: fit-content;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-size: var(--SUBBODY_TXT_FONT_SIZE);
  background: var(--SIDE_NAV_BG);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--FOURTH_BTN_BG);
  transition: background-color 0.2s ease;
  margin: 5px 10px;
}

.menu li i {
  font-size: var(--SUBHEADER_FONT_SIZE);
  width: 20px;
}

.menu li:hover {
   background: var(--THIRD_BTN_BG);
}

.menu li.active {
  background: var(--THIRD_BTN_BG);
  color: var(--THIRD_BTN_COLOR);
}

/* Content Area */
.content {
  flex: 1;
  border-radius: 12px;
  padding: 24px;
  overflow-y: auto;
  line-height: 1.6;
  font-size: var(--SUBBODY_TXT_FONT_SIZE);
  font-weight: var(--LIGHT_FONT_WEIGHT);
  background: var(--SIDE_NAV_BG);
  color: var(--THIRD_BTN_COLOR);
}

.contact-list- {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem
}

.contact-list- .contact-item {
	display: flex;
    justify-content: center;
    flex-direction: column;
    padding: unset;
    margin-left: unset;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(92.42deg, rgba(0, 82, 227, 0.5) 0%, rgba(104, 108, 119, 0.5) 100%);
    color: var(--SECONDARY_COLOR);
}

.contact-item-icon i {
	width: 30px;
	height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: var(--ICON_SMALL_FONT_SIZE);
}

.contact-item {
    display: flex;
	justify-content: center;
    flex-direction: column;
    padding: 6px;
    margin-left: 30px;
}

.contact-item-txt {
	color: inherit;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    padding-top: 8px;
    cursor: default;
}

.contact-item-link {
	font-size: var(--DEFAULT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	padding-top: 6px;
}

.contact-item-link a {
	color: inherit;
}

.contact-item-link a:hover {
	color: var(--SECONDARY_COLOR);
}