body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
}

.lang-switch {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
}

header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1581578731548-c64695cc6952') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
header h1 { font-size: 2.5em; margin-bottom: 10px; }
header p { font-size: 1.2em; margin-bottom: 20px; }
header .cta { 
  background: #28a745; color: white; padding: 20px 40px; 
  border-radius: 8px; text-decoration: none; font-weight: bold;
  transition: all 0.3s;
}
header .cta:hover { background: #218838; transform: scale(1.05); }

section { padding: 50px 20px; max-width: 900px; margin: auto; }
section:nth-of-type(even) { background: #f9f9f9; }

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }

.why-choose ul { list-style: none; padding: 0; }
.why-choose ul li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.before-after { text-align:center; padding:50px 20px; }
.ba-container { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }
.ba-image { position: relative; width:300px; overflow:hidden; border-radius:10px; box-shadow:0 4px 10px rgba(0,0,0,0.1); }
.ba-image img { width:100%; display:block; transition: transform 0.3s; }
.ba-image:hover img { transform: scale(1.05); }
.label { position:absolute; bottom:10px; left:10px; background:#28a745; color:white; padding:5px 10px; border-radius:5px; font-weight:bold; }

.testimonials { background:#f9f9f9; padding:50px 20px; text-align:center; }
.testimonial { max-width:600px; margin:20px auto; background:white; padding:20px; border-radius:10px; box-shadow:0 4px 10px rgba(0,0,0,0.1); }
.testimonial p { font-style:italic; margin-bottom:10px; }
.testimonial strong { display:block; color:#28a745; }

.quote .cta { display:inline-block; margin-top:10px; padding:15px 30px; }

@media (max-width: 600px) {
  header { padding: 60px 20px; }
  header h1 { font-size: 2em; }
  .services { grid-template-columns: 1fr; }
  .ba-container { flex-direction: column; }
}
