/* Grundlegende Stile */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

p {
	line-height: 22px;
}

h1 {
	font-size: 24px;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
}

a {
  text-decoration: none;
    color: #c2a150;
}

h2 {
    font-size: 18px;	
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 40px 0 10px 0;
  text-align: center;
}

.hero h2 {
  margin-top: 0;
}

/* Services Section */
.services {
  padding: 10px 0 40px 0;
  display: flex;
  gap: 20px;
}

p.fotos img {
	padding-right: 20px;
}

.service {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}