body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  padding: 15px 30px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-area img {
  height: 70px;
  margin-right: 15px;
}

.company-name {
  font-size: 26px;
  font-weight: bold;
  color: white;
}

.main-header .menu a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
}

.main-header .menu a:hover {
  color: #ff4c4c;
}

/* Banner */
.banner {
  text-align: center;
  margin: 20px 0;
}

.banner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Offers */
.offers {
  text-align: center;
  padding: 40px 20px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.offer-card {
  background: #f2f2f2;
  padding: 60px 20px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.offer-card:hover {
  background: #ffeded;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #333;
}

.footer .social-icons {
  margin: 10px 0;
}

.footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer .social-icons a:hover {
  color: #ff4c4c;
}

.powered-by {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

.offer-card {
  width: 180px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.offer-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.offer-card {
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.offer-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.offer-card {
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.offer-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ads-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  flex-wrap: wrap;
  max-width: 900px;
}

.ads-section img {
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
