/* Reset and base styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Breadcrumb styles */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 12px;
  color: #666;
  font-weight: 400;

}

.breadcrumb span:last-child {
  color: #454545;
  font-weight: bold;
}

.arrow {
  margin: 0 6px;
}

/* Header row with flex */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-image {
  width: 36px;
  height: 50px;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: 36px;
}

/* Recent button styles */
.recent-button {
  padding: 8px 20px;
  background-color: #fff4f6;
  color: #ff0000;
  border: 2px solid #d32f2f;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;

}

.recent-button:hover {
  background-color: #f36b6b;
  color: white;
}

.count {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #1D2128;
  margin: 20px 0;
}

/* Paragraph styles */
.intro-paragraph,
.content-paragraph {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #1D2128;
  line-height: 28px;

}

.highlight {
  font-weight: 700;
}

/* Heading styles */
h2 {
  margin-bottom: 20px;
  font-size: 28px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}