body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.header-section {
  background: url("../../assets/img/Contact.jpg") center/cover no-repeat;
  color: white;
  padding: 80px 0;
  font-weight: 700;
  font-size: 2rem;
}



.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.article-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.article-meta .date {
  color: #1dbf01;
  font-weight: 500;
}

.article-meta .category {
  background: #1dbf01;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 12px;
  margin-left: 10px;
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h3 {
  color: #2c3e50;
  font-weight: 600;
  margin: 30px 0 20px 0;
}

.sidebar-widget {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #1dbf01;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-container {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #1dbf01;
  box-shadow: 0 0 0 0.2rem rgba(29, 191, 1, 0.25);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #1dbf01;
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #16a001;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
}

.recent-posts-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts-list a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
}

.recent-posts-list a:hover {
  color: #1dbf01;
}

.categories-list {
  list-style: none;
  padding: 0;
}

.categories-list li {
  margin-bottom: 12px;
}

.categories-list a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 15px;
}

.categories-list a:hover {
  color: #1dbf01;
  border-left-color: #1dbf01;
  padding-left: 20px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
}

.news-content h6 {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.news-content a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-content a:hover {
  color: #1dbf01;
}

.news-date {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.archives-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s ease;
}

.archives-select:focus {
  outline: none;
  border-color: #1dbf01;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud .tag {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.tag-cloud .tag:hover {
  background: #1dbf01;
  color: white;
  border-color: #1dbf01;
}

.article-tags {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}

.main-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .hero-image {
    height: 200px;
    margin-bottom: 20px;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 20px;
    margin-bottom: 30px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    width: 100%;
    height: 150px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
