:root {
  --primary-color: #2b1a5e;
  --secondary-color: #f8f8f8;
  --accent-color: #ffd700;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
}

.bg-primary-custom {
  background-color: var(--primary-color);
  color: white;
}

.header {
  padding: 15px 0;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  text-align: center;
  margin: 25px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
  color: white;
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--secondary-color);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-title {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.service-list {
  list-style-type: none;
  padding-left: 0;
}

.service-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.contact-info {
  font-size: 0.9rem;
  color: white;
  text-align: right;
}

.language-selector img {
  width: 30px;
  height: auto;
  margin-right: 5px;
  cursor: pointer;
  border: 1px solid transparent;
}

.language-selector img:hover {
  border-color: var(--accent-color);
}

footer {
  padding: 20px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .contact-info {
    text-align: center;
    margin-top: 15px;
  }

  .language-selector {
    text-align: center;
    margin-bottom: 15px;
  }
}