body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: #004225; /* Deep green */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

header .subtitle {
  font-size: 1.2em;
  font-weight: 300;
}

nav {
  margin-top: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #FF6B00; /* Orange accent */
}

/* Main content */
main h2 {
  color: #004225;
  margin-top: 40px;
  font-size: 1.6em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.services {
  list-style: none;
  padding-left: 0;
}

.services li {
  margin: 8px 0;
  padding: 5px 10px;
  border-left: 4px solid #FF6B00; /* Orange accent marker */
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

.contact-info {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.contact-info li {
  margin: 10px 0;
  padding: 10px;
  border-left: 4px solid #004225;
  background: #f1f1f1;
}

/* Projekti page styles */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
  text-align: center;
  text-decoration: none;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-title {
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px;
  background: #004225;
  color: white;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Projekti gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.02);
}
