body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.main-menu a {
  margin-right: 20px;
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.icons img {
  width: 20px;
  height: 20px;
  margin-left: 15px;
}

main {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

section {
  width: 20%;
}

h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
}

.payment-methods img {
  width: 200px;
  margin-right: 15px;
}

.trustpilot p {
  font-size: 14px;
  color: #333;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media span {
  margin-right: 10px;
  font-size: 14px;
}

.social-media img {
  width: 100px;
  height: 30px;
  margin-left: 10px;
}
/* Grundlæggende styling */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.main-menu a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.icons a img {
  width: 24px;
  margin: 0 10px;
}

/* Styling for categories section */
.categories-section {
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  justify-content: center-center;
}

.category-card, .offer-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.category-info {
  margin-top: 15px;
}

.offer-card {
  background-color: #FBD567;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offer-card h2 {
  font-size: 28px;
  color: black;
}

footer {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-size: 14px;
  color: #666;
}
