body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9f9;
  color: #333;
  line-height: 1.6;
}

.hero-header {
  padding: 3rem 1rem;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/banner.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
}

.hero-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-header .subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-top: -10px;
}

.content-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.blog-post h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: #205081;
  margin-top: 2rem;
}

.blog-post p {
  margin-bottom: 1.25rem;
  text-align: justify;
}

.post-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 2rem;
}

.product-grid {
  background-color: #f2f5f8;
  border-top: 2px solid #0081C1;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-radius: 5px;
  display: inline;
}

.product-grid h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.carousel-container {
  max-width: 100%;
  overflow-x: hidden;
}

.tile-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1.5rem;
  max-width: none;
  width: 100%;
}

.tile-carousel::-webkit-scrollbar {
  display: none;
}

.tile-track {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
    background-color: #f2f5f8;
  max-width: 972px;
  margin: 0 auto;
}

.tool-tile {
  flex: 0 0 300px;
  max-width: 300px;
  
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  overflow: hidden;
}

.tile-img {
  text-align: center;
  padding: 0.5rem;
}

.tile-img img {
  max-width: 100%;
  max-height: 120px;
  height: auto;
  border-radius: 6px;
}

.tile-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 0.5rem;
}

.tile-content h3 {
  font-size: 1rem;
  color: #205081;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.3;
  font-weight: 600;
}

.tile-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: auto;
}

.tile-btn-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.tile-btn {
  background-color: #4B7F52;
  color: #fff;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tile-btn:hover {
  background-color: #3e6b45;
  color: #fff;
}

@media (max-width: 600px) {
  .tool-tile {
    flex: 0 0 80%;
  }
}

.blog-lead {
  font-size: 1.4rem;
  color: #205081;
  font-weight: 600;
  margin: 2rem 0 1rem;
  text-align: center;
}

.blog-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 1.5rem auto 2rem;
}

.tip-list {
  background: #f7f9fc;
  border-left: 4px solid #0081C1;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  border-radius: 6px;
  list-style-type: none;
}

.tip-list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tip-list li::before {
  content: "\2713";
  color: #4B7F52;
  font-weight: bold;
  margin-right: 0.75rem;
}

.blog-post {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.blog-post img {
  display: block;
  max-width: 100%;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.home-link {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 10;
}

a {
  color: var(--link-color);
}

.cta-section {
  background-color: #f7f9fc;
  border-top: 2px solid #0081C1;
  padding: 2rem 1rem;
  margin-top: 3rem;
  text-align: center;
  border-radius: 8px;
}

.cta-section a {
  color: #0061A6;
  font-weight: 600;
  text-decoration: none;
}

.cta-section a:hover {
  text-decoration: underline;
}

.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 2rem 1rem;
  line-height: 1.6;
  background-color: #f0f2f1;
  border-top: 1px solid #ddd;
}

.site-footer a {
  color: #4B7F52;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #3e6b45;
}
