/* Perusasetukset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #f8f8f8; /* Vaalea harmaa tausta rungolle */
  color: #333;
  line-height: 1.6;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #666;
}

/* Kontti, jolla keskitetään sisältö */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background-color: #fff; /* Valkoinen tausta headerille */
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 50px;
  height: 30px;
}

.logo h1 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

/* Navigaatio */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li {
  display: inline;
}

.nav-links li a {
  font-weight: bold;
}

/* HERO */
.hero {
  background-image: url("tausta.jpg"); /* Tumma taustakuva */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
}

/* SERVICES */
.services {
  background-color: #fff;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
}

/* Palvelulaatikot */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: #f0f0f0;  /* Vaaleanharmaa laatikko */
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

.service-item h3 {
  margin-bottom: 1rem;
  color: #023e8a;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ABOUT */
.about {
  padding: 2rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1rem;
}

/* CONTACT (yhteystiedot, ilman lomaketta) */
.contact {
  background-color: #fff;
  padding: 2rem 0;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* FOOTER */
.footer {
  background-color: #fff; /* Valkoinen footer */
  text-align: center;
  padding: 1rem 0;
  margin-top: 1rem;
}

.footer-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
