/* Grundinställningar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: #004466;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

header h1 {
  font-size: 3em;
  margin: 0;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Sections */
main section {
  margin: 40px 0;
}

.intro h2,
.services h2,
.contact h2 {
  color: #004466;
  margin-bottom: 15px;
}

/* Tjänstelista */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Kontakt */
.contact a {
  color: #004466;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #e0e0e0;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

