* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

:root {
  --primary-color: #d1147e;
  --primary-dark: #a80f65;
  --primary-light: #e93c9f;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f8f8f8;
  --background-dark: #222222;
}

body {
  background-color: var(--background-light);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.lang-btn:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.container {
  max-width: 1200px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 50px auto;
  padding: 40px;
  text-align: center;
}

.logo {
  margin-bottom: 30px;
}

.logo-placeholder {
  width: 150px;
  height: 150px;
  background-color: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 24px;
  font-weight: bold;
  overflow: hidden;
}

.logo-placeholder img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.content {
  margin-bottom: 40px;
}

.message h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.message p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.contact-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.office {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--text-light);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.office-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.office-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-details i {
  color: var(--primary-color);
  width: 20px;
}

.office-details a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.office-details a:hover {
  color: var(--primary-color);
}

footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .offices {
    flex-direction: column;
  }

  .office {
    width: 100%;
  }

  .message h1 {
    font-size: 2rem;
  }
}
