body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fbeaec;
  color: #333;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-weight: 700;
  font-size: 1.7rem;
  color: #e06c9f;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.logo span {
  color: #e06c9f;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: #e06c9f;
}
.language-switcher {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.language-switcher button {
  background: transparent;
  border: 2px solid #e06c9f;
  color: #e06c9f;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.language-switcher button:hover {
  background: #e06c9f;
  color: #fff;
}
.language-switcher button.active {
  background: #e06c9f;
  color: #fff;
}
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fbeaec;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: url('images/hero-background.jpg') center center/cover no-repeat;
  opacity: 0.5;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(251, 234, 236, 0.85) 0%, rgba(251, 234, 236, 0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0 80px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #e06c9f;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.cta-btn {
  background: #e06c9f;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #d14e8a;
}
.about, .services, .testimonials, .contact {
  padding: 60px 0 40px 0;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(224,108,159,0.04);
}
.about h2, .services h2, .testimonials h2, .contact h2 {
  color: #e06c9f;
  margin-bottom: 18px;
}
.team-photo-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}
.team-photo {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(224,108,159,0.15);
  object-fit: cover;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.service {
  flex: 1 1 200px;
  max-width: 220px;
  background: #fbeaec;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(224,108,159,0.06);
}
.service img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: grayscale(0.2) brightness(0.9) sepia(0.1) hue-rotate(-20deg) saturate(1.2);
}
.service h3 {
  color: #e06c9f;
  margin-bottom: 8px;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.testimonial {
  flex: 1 1 220px;
  max-width: 260px;
  background: #fbeaec;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(224,108,159,0.06);
}
.testimonial img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #e06c9f;
}
.testimonial span {
  display: block;
  margin-top: 8px;
  color: #888;
  font-size: 0.95rem;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  margin-bottom: 24px;
}
.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.15rem;
  line-height: 1.6;
}
.contact-info svg {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
}
.contact-info .icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  filter: grayscale(0.2) brightness(0.9) sepia(0.1) hue-rotate(-20deg) saturate(1.2);
}
.contact-form {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fbeaec;
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(224,108,159,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}
.contact-form h3 {
  margin-bottom: 8px;
  color: #e06c9f;
  font-size: 1.4rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #eec2d6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  resize: none;
  box-sizing: border-box;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button {
  background: #e06c9f;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #d14e8a;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 40px 30px;
  border-radius: 18px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: slideDown 0.3s;
}
.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #e06c9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}
.modal-content h3 {
  color: #e06c9f;
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.modal-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #e06c9f;
}
.modal-btn {
  background: #e06c9f;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.modal-btn:hover {
  background: #d14e8a;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
footer {
  background: #fff;
  color: #888;
  padding: 18px 0;
  font-size: 0.98rem;
  border-top: 1px solid #fbeaec;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-container a {
  color: #e06c9f;
  text-decoration: none;
  margin-left: 10px;
}
.footer-container a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .services-list, .testimonials-list, .contact-container {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info p {
    justify-content: center;
  }
  .hero-content {
    padding: 60px 0 60px 10px;
  }
  .hero {
    min-height: 600px;
  }
  nav {
    flex-wrap: wrap;
  }
  .language-switcher {
    margin-left: 0;
  }
  .team-photo-container {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  .logo {
    font-size: 1.4rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 8px;
  }
  .about, .services, .testimonials, .contact {
    padding: 32px 0 20px 0;
  }
  .hero {
    min-height: 500px;
  }
  .team-photo-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-content {
    padding: 40px 0 40px 10px;
  }
  .team-photo-container {
    margin-top: 20px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info p {
    justify-content: center;
    font-size: 1rem;
  }
  .contact-info svg {
    width: 24px;
    height: 24px;
  }
  .contact-form {
    padding: 24px 16px;
  }
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  .modal-content h3 {
    font-size: 1.3rem;
  }
  .modal-content p {
    font-size: 1rem;
  }
} 