/* Basic Reset */


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background-color: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  color: #212529;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex-grow: 1;
  padding: 40px 0;
}

section {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #343a40;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
  display: inline-block;
}

p {
  margin-bottom: 1rem;
}

.service-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-highlight img {
  max-width: 100px;
  height: auto;
  border-radius: 4px;
}

.store-badge {
  max-height: 120px;
  margin-left: 5px;
  border: none;
  display: inline-block;
}

a img.store-badge {
  border: none;
}
.store-link {
  display: inline-block;
  border: none;
  background: none;
}


.service-highlight .description {
  flex: 1;
  min-width: 250px;
}

.service-highlight a.button-link {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-highlight a.button-link:hover {
  background-color: #0056b3;
}

footer {
  background-color: #343a40;
  color: #f8f9fa;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #adb5bd;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    justify-content: center;
  }

  .service-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-highlight img {
    margin-bottom: 15px;
  }
}

