.page-header {
  text-align: center;
  padding: 4rem 1rem 3rem;
  position: relative;
}
.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.blog-section {
  padding: 3rem 0;
  position: relative;
}
.blog-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 1.5rem;
}
.blog-date {
  color: #888;
  font-size: 0.9rem;
}
.blog-content h4 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}
.blog-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.read-btn {
  display: inline-block;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #ffd600;
  transition: color 0.3s ease;
}
.read-btn:hover {
  color: #e6b800;
}

/* Subscribe Section */
.subscribe-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #fff5c2;
  border-radius: 16px;
  margin: 3rem 0;
}
.subscribe-section h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.subscribe-section p {
  margin-bottom: 1.5rem;
  color: #444;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.subscribe-form input {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  min-width: 250px;
}
.subscribe-form .btn-yellow {
  background: #ffd600;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.subscribe-form .btn-yellow:hover {
  background: #f2c300;
}
