body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #0a0a0a;
  scroll-behavior: smooth;
}

.section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.section.dark {
  background: #111;
}

h1, h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero {
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #00f0ff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.cta:hover {
  background: #0077ff;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  border-color: #00f0ff;
}

.underbrands {
  background-color: #f9f9f9;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch; /* ← gør boksene ens høje */
}

.brand {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-5px);
}

.brand img {
  width: 5%;
  max-width: 40px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}


.brand h3 {
  margin-top: 0;
  color: #003366;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

button {
  background: #00f0ff;
  padding: 15px;
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #0077ff;
  color: #fff;
}

footer {
  text-align: center;
  padding: 30px;
  background: #000;
  font-size: 0.9em;
}
