* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f4f4;
}

.presence-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.presence-text {
  flex: 1;
  min-width: 300px;
  padding: 30px;
}

.presence-text h2 {
  color: #333;
  font-size: 22px;
  margin-bottom: 20px;
}

.presence-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.presence-text .location {
  margin-bottom: 20px;
}

.presence-text .company {
  color: green;
  font-weight: bold;
}

.btn-consult {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-consult:hover {
  background-color: darkgreen;
}

.presence-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presence-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .presence-text h2 {
    padding-top: 20px;
  }
  .presence-section {
    flex-direction: column;
  }

  .presence-text,
  .presence-image {
    padding: 20px;
  }
}
