﻿

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}
header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('./img/banner.png') center/cover no-repeat;
  color: white;
  padding: 8rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
}
h1, h2 {
  color: #1e1e1e;
}
section {
  margin-bottom: 2rem;
}
img.profile {
  max-width: 200px;
  border-radius: 8px;
}
iframe {
  width: 100%;
  max-width: 100%;
  border: none;
}
.contact a {
  color: #007acc;
  text-decoration: none;
}
.testimonial {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #ccc;
  font-style: italic;
}
form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  padding: 0.8rem 1.2rem;
  background-color: #1e1e1e;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
footer {
  background: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.language-switch {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.language-switch a {
  background-color: #ffffffaa;
  padding: 0.5rem 1rem;
  color: #1e1e1e;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.language-switch a:hover {
  background-color: #ffffff;
}

@media (max-width: 600px) {
  header {
    background-position: 40% 30%;
  }
}
