.blog-section {
  padding: 120px 0 80px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.blog-description {
  color: #666;
  margin-bottom: 15px;
}

.blog-tags {
  margin-bottom: 15px;
}

.tag {
  background: #34bec1;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-right: 5px;
}

.read-more {
  color: #34bec1;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.search-filters {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.search-box {
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
}

.search-box:focus {
  border-color: #34bec1;
  outline: none;
}

.tag-filter {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.tag-filter.active {
  background: #34bec1;
  color: white;
}

.tag-filter:not(.active) {
  background: #f8f9fa;
  color: #666;
}

.tag-filter:hover {
  background: #34bec1;
  color: white;
}

.newsletter-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 20px;
}

.newsletter-input:focus {
  border-color: #34bec1;
  outline: none;
}

.newsletter-checkbox {
  margin-bottom: 15px;
}

.newsletter-checkbox input {
  margin-right: 10px;
}

.newsletter-btn {
  background: #34bec1;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  width: 100%;
  transition: background 0.3s;
}

.newsletter-btn:hover {
  background: #2a9a9d;
}
