/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts & Base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #0052cc;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

header img.logo {
  height: 50px;
}

header a.btn-list {
  background-color: #ffc107;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

header a.btn-list:hover {
  background-color: #e0a800;
}

/* Section Titles */
.section-title {
  margin: 30px 0 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

/* Category Section */


.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.category-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.category-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1000px;
}

.category-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.category-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}


/* Business Listings */
.business-section {
  padding: 30px 15px;
  background-color: #fff;
}

.business-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.business-card {
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  width: 300px;
  overflow: hidden;
  transition: 0.3s ease;
}

.business-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.business-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.business-content {
  padding: 15px;
}

.business-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0052cc;
}

.business-content p {
  font-size: 0.95rem;
  color: #555;
}

/* Articles Section */
.articles {
  padding: 30px;
  background-color: #f2f2f2;
}

.article-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.article-card h4 {
  color: #0052cc;
  margin-bottom: 8px;
}

.article-card p {
  font-size: 0.95rem;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px 15px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
}
