h1 {
    font-size: 40px;
}

h2 {
  font-size: 30px;
}











/* General Blog Styling */
.blog-detail-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #f5f5f5;
  margin-top: 60px; /* prevents overlap with navbar */
}

 .white-text {
    color: white;
  }
  .orange-text {
    color: #FF4A17;
  }

.blog-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
}

.blog-meta {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.blog-content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.highlight-points {
  margin: 20px 0;
  padding-left: 20px;
}

.highlight-points li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Comment Section */
.comment-section {
  margin-top: 50px;
  padding: 25px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.comment-section h2 {
  margin-bottom: 20px;
  color: #ff6b00;
}

.comment-form .form-group {
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 14px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid #ff6b00;
}

.comment-form textarea {
  height: 120px;
  resize: none;
}

.comment-form button {
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.comment-form button:hover {
  background: #ff8533;
}

/* Posted Comments */
.posted-comments {
  margin-top: 30px;
}

.posted-comments h3 {
  margin-bottom: 15px;
  color: #ff6b00;
}

#commentList {
  list-style: none;
  padding: 0;
}

#commentList li {
  background: #2a2a2a;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.6;
}
#commentList li strong {
  color: #ff6b00;
}
