/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  background-color: #f7fafa;
  color: #333;
  padding: 0px;
}

/* Blog container */
.blog-article {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 128, 128, 0.1);
  animation: fadeInUp 1s ease-out;
}

.blog-header h1 {
  font-size: 2.2rem;
  color: #006d6d;
  margin-bottom: 10px;
}

.blog-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* Main image */
.blog-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Paragraph content */
.blog-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.blog-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-content ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* Footer */
.blog-footer {
  margin-top: 30px;
  text-align: left;
}

.back-link {
  text-decoration: none;
  color: #006d6d;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #009999;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blog-article {
    padding: 25px 20px;
  }

  .blog-header h1 {
    font-size: 1.6rem;
  }
}
