/* 🔹 BASE */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ece7dd;
  color: #2f2f2f;
}

/* 🔹 HEADER */
#header {
  text-align: center;
  margin-top: 40px;
}

/* 🔹 SECTION */
#utilities-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

/* 🔹 GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* 🔹 CARD */
.app-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.app-image {
  height: 120px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
}

/*Second app-image block*/
.app-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🔹 DOWNLOAD BUTTON */
.download-btn {
  display: inline-block;
  margin-top: 10px;

  background: #1E90FF;
  color: #fff;

  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.download-btn:hover {
  background: #187bcd;
}

/* 🔹 RESPONSIVE */
@media (max-width: 600px) {

  #utilities-section {
    padding: 10px;
  }

}