body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f4f6fc;
  color: #1e293b;
}


.home-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.home-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}



.blog-header {
  background-color: #4f46e5;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
  position: relative;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.blog-title {
  margin: 0;
  font-size: 2.2rem;
}

.article-meta {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #e0e7ff;
}

.cover-image {
  display: flex;
  justify-content: center;
  background-color: #eef2ff;
  padding: 20px;
}

.cover-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

.blog-container {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #1e40af;
}

.blog-content p,
.blog-content ul {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
}

.blog-content a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.5rem;
}

.blog-footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 50px;
}
