.sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #f4f4f4, #eaeaea);
  padding: 20px;
  border-radius: 16px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.03);
}

.section-box {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 10px;
  background-color: #ffffffcc;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-box:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.section-box .icon {
  font-size: 24px;
  margin-right: 12px;
}

/* Individual hover background colors */
.section-box.literature:hover {
  background-color: #fbe3ff;
}
.section-box.sports:hover {
  background-color: #e0f7fa;
}
.section-box.interviews:hover {
  background-color: #fff3e0;
}
.section-box.culture:hover {
  background-color: #ede7f6;
}
.section-box.pdf:hover {
  background-color: #e3f2fd;
}
.section-box.news:hover {
  background-color: #f1f8e9;
}




.geghama-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease-in-out;
  font-family: "Noto Serif Armenian", serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.geghama-box:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  background: #fefefe;
}

.geghama-box h3 {
  font-size: 20px;
  margin-top: 0;
  color: #0055aa;
}



.geghama-paper {
  background: linear-gradient(to right, #f7f7f7, #f0f0f0);
  border-left: 5px solid #2C3D8B;
  padding: 25px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 10px;
  font-family: "Arial", sans-serif;
}

.geghama-text h2 {
  color: #2C3D8B;
  font-size: 26px;
  margin-bottom: 15px;
}

.geghama-text p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}