body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.language-switcher {
  position: absolute;
  top: 10px;
  right: 20px;
}

.language-switcher button {
  margin-left: 10px;
  padding: 5px 10px;
  background: white;
  border: 1px solid #1e90ff;
  color: #1e90ff;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 0.9em;
}

.language-switcher button:hover {
  background-color: #e0e0e0;
}
.language-switcher img {
  width: 20px;
  margin-right: 6px;
}

.hero {
  height: 70vh;
  background: url('images/hero-image-optimized.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0rem;
}

.hero h1 {
  font-size: 2.5em;
  color: rgb(18, 120, 3);
}

.hero p {
  font-size: 1.5em;
  font-weight: bold;
  color: rgb(18, 120, 3);
}

.btn {
  background-color: #007BFF;
  color: white;
  padding: 0.7em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

section {
  padding: 0px 20px;
  max-width: 800px;
  margin: auto;
}

.about-content {
  max-width: 800px;
  margin: auto;
  padding: 10px 20px;
  /* clearfix for floated photo */
  overflow: hidden; /* simple clearfix alternative */
}

.profile-photo {
  float: left;
  width: 200px;
  margin-right: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.text-content p {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* Clear float after the container so it expands properly */
.about-content::after {
  content: "";
  display: table;
  clear: both;
}


.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin-bottom: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  background: #1e90ff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.privacy {
  display: none;
}

.privacy.visible {
  display: block;
  padding: 40px 20px;
  background-color: #dcdcdc;
  border-top: 1px solid #ccc;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.privacy.visible h2 {
  text-align: center;
  margin-bottom: 20px;
}

.privacy h2 {
  text-align: center;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #dcdcdc;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .language-switcher {
    position: static;
    text-align: center;
    margin: 10px 0;
  }

.hero {
  height: 70vh;
  background: url('images/hero-image-cropped.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: rgb(107, 128, 104);
  padding: 1rem;
}

.hero h1 {
  font-size: 2.0em;
  color: rgb(18, 120, 3);
  padding-bottom: 190px;
}

.hero p {
  font-size: 1.3em;
  font-weight: bold;
  color: rgb(18, 120, 3);
}

.about-content {
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.profile-photo {
  width: 140px;
  margin-bottom: 1em;
}

.text-content {
  width: 100%;
}

section h2 {
  text-align: center;
}
}
