body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: #222;
  background: linear-gradient(to bottom, #dbdbdb4f, #d067566e);
}

.content-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #fff;
  border-bottom: 4px solid #f29222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  height: 60px;
  transition: height 0.3s ease;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #f29222;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

nav a:hover {
  color: #e67e00;
}

nav a.active {
  border-bottom: 2px solid #f29222;
}

.hero-image {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 30px 40px;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.hero-overlay h1 {
  margin: 0 0 10px;
  font-size: 2.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.highlight {
  margin-top: 40px;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 15px;
  background: #f29222;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.blog-section {
  background: none;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

.blog-card {
  background: #ffffff;
  color: #222;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 1 1 calc(33% - 2rem);
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.2rem;
}

.blog-card-content a {
  text-decoration: none;
}


.blog-card-content h3 {
  font-size: 1.3rem;
  color: #c25c00;
  margin-bottom: 0.6rem;
  font-weight: bold;
}

.blog-card-content h3 a {
  color: #c25c00;
}


.blog-card-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.read-more {
  margin-top: auto;
  display: inline-block;
  font-weight: bold;
  color: #c25c00;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

footer {
  padding: 20px 0;
  background: #f2f2f2;
  text-align: center;
  font-size: 0.9rem;
}


.blog-card-content a,
.blog-card-content a h3,
.blog-card-content a p {
  text-decoration: none;
  color: inherit;
}

.blog-card-content a:hover h3 {
  color: #a64600;
}

.blog-card-content a:hover p {
  color: #333;
}
.blog-card h3 a {
  text-decoration: none;
}
.blog-card h3 a:hover {
  text-decoration: none;
}

.blog-article-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 1rem 1rem;
  margin-bottom: 4rem;
}