body {
  background-color: #111;
  color: #fff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #000;
}

.logo {
  width: 120px;
  border-radius: 10px;
}

{
  color: #00ffcc;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
}
.music-player {
  flex: 1 1 300px; 
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 12px;
  max-width: 100%;
  margin: 20px auto;
  font-family: 'Helvetica Neue', sans-serif;
}

.cover {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.info {
  flex: 1;
}

.info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.info p {
  margin: 4px 0;
  font-size: 12px;
  color: #777;
}

audio {
  width: 100%;
  margin-top: 8px;
}

.btn-single {
  display: inline-block;
  margin-top: 8px;
  background: #ff6600;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-single:hover {
  background: #e65c00;
}
.player-container {
  display: flex;
  justify-content: center;
  gap: 20px; 
  flex-wrap: wrap; 
  margin: 20px auto;
  max-width: 800px;
}

.player-container {
  display: flex;
  justify-content: center;
  gap: 20px; 
  flex-wrap: wrap; 
  margin: 20px auto;
  max-width: 800px;
}
.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  margin: 15px 0;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.service-price {
  font-size: 16px;
  color: #ff6600;
  margin-bottom: 12px;
}

.service-button {
  background: #ff6600;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.service-button:hover {
  background: #e65c00;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}



