body {
  background-color: #f8f9fa;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.main-box {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.main-box h2 {
  font-weight: 800;
}

.main-box p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.entry-meta {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.entry-meta span {
  margin-right: 15px;
}

.entry-meta .badge {
  background-color: #1dbf01;
}

.article-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.article-content p {
  margin-bottom: 18px;
  color: #495057;
  font-size: 1.05rem;
}

.tags-section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.tag-link {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background-color: #1dbf01;
  color: white;
  text-decoration: none;
}

.sidebar {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.widget {
  margin-bottom: 40px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1dbf01;
}

.search-form {
  position: relative;
}

.search-field {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  font-size: 0.9rem;
}

.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #1dbf01;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: white;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
}

.recent-posts-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.recent-posts-list a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.recent-posts-list a:hover {
  color: #1dbf01;
}

.categories-list {
  list-style: none;
  padding: 0;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list a {
  color: #6c757d;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.categories-list a:hover {
  color: #1dbf01;
}

.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.news-content h6 a {
  color: #495057;
  text-decoration: none;
}

.news-content h6 a:hover {
  color: #1dbf01;
}

.news-date {
  font-size: 0.8rem;
  color: #6c757d;
}

.tagcloud .tag-cloud-link {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 6px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  margin: 3px;
  transition: all 0.3s ease;
}

.tagcloud .tag-cloud-link:hover {
  background-color: #1dbf01;
  color: white;
}

.form-select {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem;
  }

  .article-content {
    padding: 25px;
  }

  .sidebar {
    margin-top: 30px;
  }
}
