.bred_crumb {
  margin-bottom: 0;
  padding: 20px 0;
  background: #f8f9fa;
}

.bred_text h1 {
  margin: 0;
  font-size: 28px;
  color: #333;
}

.blog_detail_section {
  padding-top: 20px;
}

.section_title {
  margin-bottom: 35px;
  text-align: center;
}

.section_title h2 {
  margin: 0;
  font-size: 36px;
  color: #333;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section_title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff0000;
}

.contact-section {
  padding-bottom: 60px;
}

.blog_inner_pannel {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-info {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
  border-bottom: 2px solid #ff0000;
  padding-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact-item:hover {
  background-color: #fff;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .icon {
  font-size: 22px;
  color: #ff0000;
  margin-right: 15px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .content {
  flex: 1;
}

.contact-item .content h4 {
  margin-bottom: 3px;
  font-size: 16px;
  color: #333;
}

.contact-item .content p, 
.contact-item .content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.contact-item .content a:hover {
  color: #ff0000;
}

.contact-form-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-control {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 15px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 14px;
}

textarea.form-control {
  height: auto;
  resize: vertical;
  min-height: 100px;
}

.form-control:focus {
  border-color: #ff0000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.submit-btn {
  background: #ff0000;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .bred_text h1 {
    font-size: 24px;
  }
  
  .section_title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .bred_crumb {
    padding: 15px 0;
  }
  
  .blog_detail_section {
    padding-top: 15px;
  }
  
  .contact-section {
    padding: 15px 0 40px;
  }
  
  .contact-info {
    margin-bottom: 20px;
    padding: 20px;
  }
  
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .contact-item {
    margin-bottom: 15px;
  }
  
  .bred_text h1 {
    font-size: 22px;
  }
  
  .section_title {
    margin-bottom: 25px;
  }
  
  .section_title h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact-item .icon {
    font-size: 20px;
    min-width: 25px;
  }
  
  .contact-item .content h4 {
    font-size: 15px;
  }
  
  .contact-item .content p,
  .contact-item .content a {
    font-size: 14px;
  }
  
  .form-control {
    height: 40px;
    font-size: 14px;
  }
  
  .submit-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .section_title h2 {
    font-size: 24px;
  }

  .section_title h2:after {
    width: 60px;
  }
}