/* ========================= 
   Presence Worldwide Section
========================= */
.presence-worldwide {
  text-align: center;
  background: #fff;
  color: #222;
  padding: 4rem 2rem;
}

.presence-worldwide h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.presence-worldwide p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Map container */
.world-map-container {
  position: relative;
  display: inline-block;
  max-width: 90%;
  border: 1px solid #ddd;
  border-radius: 6px;
  shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.world-map {
  width: 90%;
  height: auto;
  border-radius: 6px;
}

/* Location markers */

/* .cta-container-parent {
  background: #cecece;
  margin-top: 3rem;
  padding: 0;
  display: flex;
  justify-content: center;
  justify-items: center;
  padding: 1rem 1.5rem;
  margin: 60px 5%;
  border: 1px solid #000;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
} */
/* CTA box */
.cta-container {
  width: 100%;
  background: #fff;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  gap: 1rem;
}

.cta-container p {
  margin: 0;
  font-weight: 500;
}

.cta-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .presence-worldwide h2 {
    font-size: 1.6rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .presence-worldwide {
    padding: 3rem 1rem;
  }
  .world-map-container,
  .world-map {
    max-width: 100%;
  }
}
