* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-base);
}
body {
  background: #fff;
  color: var(--brand-text-dark);
  line-height: 1.6;
}

.hero {
  position: relative;
  text-align: center;
  color: #fff;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.75;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  color: var(--brand-highlight);
}
.hero-content p {
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.blog-section {
  padding: 80px 5%;
  background-color: #fafafa;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 20px;
}

.blog-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-texts {
  padding: 20px;
}

.blog-date {
  color: #8c8c8c;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.read-more {
  color: #0099ff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .blog-title {
    font-size: 1rem;
  }
}
