* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 1200px;
  margin: auto;
}
h1 {
  color: #007bff;
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin: 10px 0;
}

a{
  font-size: 18px;
  line-height: 1.6;
  margin: 10px 0;
  color: white;
}
.icon {
  font-size: 20px;
  margin-right: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(133, 125, 125, 0.3);
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /*backdrop-filter: blur(3px);*/
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
  height: 65px;

}

.logo {
  height: 50px;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

.contact-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.contact-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-bottom a {
  margin: 0;
}

.phone {
  font-weight: 700;
}

.lang-link {
  color: #fff;
  text-decoration: none;
}

#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about {
  padding: 100px 0;
  background-color: #2f2f2f;
}

.video-container {
  flex: 1;
  margin-right: 40px;
}

.about-text {
  flex: 1;
}

#about .container {
  display: flex;
  align-items: center;
}

#contact {
  padding: 100px 0;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

input,
textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  padding: 10px 20px;
  background-color: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}

footer {
  background-color: #2f2f2f;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ddd;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 38.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #about .container {
    flex-direction: column;
  }

  .video-container {
    margin-right: 0;
    margin-bottom: 40px;
    padding-bottom: 56.25%;
  }
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


/* Language switch */
.lang-switch {
  display: inline-block;
  margin-left: 15px;
  padding: 4px 10px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.15);
}