/* Grundlayout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: #fff;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #27ae60;
}

nav .cta {
  padding: 8px 16px;
  background: #27ae60;
  color: #fff !important;
  border-radius: 6px;
}

/* Hero */
.hero {
  background: url("https://source.unsplash.com/1600x600/?security,house") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
}

.btn.primary {
  background: #27ae60;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #333;
}

/* Trust icons */
.trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* About */
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* CTA strip */
.cta-strip {
  background: #1c2b39;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-strip h2 {
  margin-bottom: 20px;
}

.cta-box {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: #27ae60;
}

.cta-box a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}

/* Kontakt */
#contact {
  text-align: center;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
