/* Blog post specific styles */
.blog-post-header {
  background-color: #333;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.blog-post-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
}

.blog-post-meta i {
  margin-right: 5px;
  color: #f7be16;
}

.blog-post-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-post-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
  line-height: 1.8;
  color: #444;
}

.blog-post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #333;
  font-size: 28px;
}

.blog-post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
  font-size: 22px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content strong {
  color: #333;
}

.blog-post-content blockquote {
  border-left: 4px solid #f7be16;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #666;
}

.benefit-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f7be16;
}

.benefit-card h3 {
  margin-top: 0;
  color: #333;
  font-size: 22px;
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: #f7be16;
  color: white;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tr:hover {
  background-color: #f5f5f5;
}

.blog-post-cta {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-post-cta h3 {
  margin-bottom: 15px;
  color: #333;
}

.blog-post-cta p {
  margin-bottom: 20px;
}

.blog-post-cta .contact-btn {
  display: inline-block;
  background-color: #f7be16;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.blog-post-cta .contact-btn:hover {
  background-color: #e0a800;
}

.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog-navigation a {
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-navigation a:hover {
  color: #f7be16;
}

.blog-navigation .prev i {
  margin-right: 8px;
}

.blog-navigation .next i {
  margin-left: 8px;
}

.process-step {
  display: flex;
  margin-bottom: 40px;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  background-color: #f7be16;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-top: 0;
}